Skip to content

Commit a26fc0e

Browse files
authored
Merge branch 'staging' into copilot/cache-playwright-browsers-ci
2 parents 80e74ea + b62b0ab commit a26fc0e

6 files changed

Lines changed: 42 additions & 22 deletions

File tree

.github/dependabot.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,24 @@ updates:
1414
npm-minor-patch:
1515
update-types:
1616
- "patch"
17-
17+
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "daily"
22+
target-branch: "staging"
23+
groups:
24+
github-actions-minor-patch:
25+
update-types:
26+
- "patch"
27+
28+
- package-ecosystem: "pip"
29+
directory: "/"
30+
schedule:
31+
interval: "daily"
32+
target-branch: "staging"
33+
groups:
34+
pip-minor-patch:
35+
update-types:
36+
- "patch"
37+

.github/workflows/nextjs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Setup Node
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: "20"
2424

@@ -35,7 +35,7 @@ jobs:
3535
run: npm run lint
3636

3737
- name: Setup Python
38-
uses: actions/setup-python@v5
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: "3.12"
4141

.github/workflows/playwright.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v4
2727

28-
- uses: actions/setup-node@v4
28+
- uses: actions/setup-node@v6
2929
with:
3030
node-version: 24
3131

32-
- uses: actions/setup-python@v5
32+
- uses: actions/setup-python@v6
3333
with:
3434
python-version: '3.12'
3535

@@ -88,7 +88,7 @@ jobs:
8888
mkdir -p playwright-report
8989
mkdir -p playwright-report/artifacts
9090
91-
- uses: actions/upload-artifact@v4
91+
- uses: actions/upload-artifact@v7
9292
if: always()
9393
with:
9494
name: playwright-report-shard-${{ matrix.shard }}
@@ -97,7 +97,7 @@ jobs:
9797

9898
- name: Upload failed test screenshots
9999
if: always()
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v7
101101
with:
102102
name: failed-test-screenshots-shard-${{ matrix.shard }}
103103
path: playwright-report/artifacts/

.github/workflows/release-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
fi
2424
2525
- name: Login to DockerHub
26-
uses: docker/login-action@v3
26+
uses: docker/login-action@v4
2727
with:
2828
username: ${{ secrets.DOCKER_USERNAME }}
2929
password: ${{ secrets.DOCKER_PASSWORD }}
3030

3131
- name: Build image
32-
uses: docker/build-push-action@v5
32+
uses: docker/build-push-action@v7
3333
with:
3434
context: .
3535
file: ./Dockerfile

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "code-graph-e2e",
33
"private": true,
44
"devDependencies": {
5-
"@playwright/test": "^1.50.1"
5+
"@playwright/test": "^1.58.2"
66
}
77
}

0 commit comments

Comments
 (0)