Skip to content

Commit 38e9da8

Browse files
chore(deps): bump the actions group across 1 directory with 5 updates
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `2` | `3` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3` | `4` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/create-github-app-token` from 2 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v2...v3) Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-qemu-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent bdca6cd commit 38e9da8

22 files changed

+60
-60
lines changed

.github/workflows/cf_prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
test_smoke:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- uses: actions/setup-node@v4
13+
- uses: actions/checkout@v6
14+
- uses: actions/setup-node@v6
1515
with:
1616
node-version: '20.x'
1717
registry-url: 'https://registry.npmjs.org'

.github/workflows/cf_publish_release_npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
name: "Publish Cloudflare Playwright to NPM"
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-node@v4
12+
- uses: actions/checkout@v6
13+
- uses: actions/setup-node@v6
1414
with:
1515
node-version: "20.x"
1616
registry-url: "https://registry.npmjs.org"

.github/workflows/cf_test_full.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
CF_ACCESS_CLIENT_SECRET: ${{ secrets.CF_ACCESS_CLIENT_SECRET }}
1818
CF_ACCESS_CLIENT_ID: ${{ secrets.CF_ACCESS_CLIENT_ID }}
1919
steps:
20-
- uses: actions/checkout@v4
21-
- uses: actions/setup-node@v4
20+
- uses: actions/checkout@v6
21+
- uses: actions/setup-node@v6
2222
with:
2323
node-version: '20.x'
2424
registry-url: 'https://registry.npmjs.org'
@@ -35,7 +35,7 @@ jobs:
3535
npm run test:full -- --reporter=html ${{ github.event.inputs.grep && format('--grep="{0}"', github.event.inputs.grep) }}
3636
3737
- name: Upload HTML report
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v7
3939
if: ${{ !cancelled() }}
4040
with:
4141
name: playwright-report--attempt-${{ github.run_attempt }}

.github/workflows/cf_test_smoke.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
CF_ACCESS_CLIENT_SECRET: ${{ secrets.CF_ACCESS_CLIENT_SECRET }}
1414
CF_ACCESS_CLIENT_ID: ${{ secrets.CF_ACCESS_CLIENT_ID }}
1515
steps:
16-
- uses: actions/checkout@v4
17-
- uses: actions/setup-node@v4
16+
- uses: actions/checkout@v6
17+
- uses: actions/setup-node@v6
1818
with:
1919
node-version: '20.x'
2020
registry-url: 'https://registry.npmjs.org'
@@ -31,7 +31,7 @@ jobs:
3131
cd packages/playwright-cloudflare
3232
npm run test:smoke -- --reporter=html
3333
34-
- uses: actions/upload-artifact@v4
34+
- uses: actions/upload-artifact@v7
3535
if: ${{ !cancelled() }}
3636
with:
3737
name: playwright-report

.github/workflows/cherry_pick_into_release_branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
echo "Version is not a two digit semver version"
2727
exit 1
2828
fi
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
ref: release-${{ github.event.inputs.version }}
3232
fetch-depth: 0
@@ -59,7 +59,7 @@ jobs:
5959
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_OUTPUT
6060
git checkout -b "$BRANCH_NAME"
6161
git push origin $BRANCH_NAME
62-
- uses: actions/create-github-app-token@v2
62+
- uses: actions/create-github-app-token@v3
6363
id: app-token
6464
with:
6565
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
contents: read
99

1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: actions/setup-node@v6
1313
with:
1414
node-version: "22"

.github/workflows/create_test_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: ${{ github.event.workflow_run.event == 'pull_request' }}
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- uses: actions/setup-node@v6
1919
with:
2020
node-version: 20

.github/workflows/infra.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: "docs & lint"
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- uses: actions/setup-node@v6
2323
with:
2424
node-version: 20
@@ -40,7 +40,7 @@ jobs:
4040
name: "Lint snippets"
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
- uses: actions/setup-node@v6
4545
with:
4646
node-version: 20

.github/workflows/pr_check_client_side_changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
if: github.repository == 'microsoft/playwright'
1717
steps:
18-
- uses: actions/checkout@v5
19-
- uses: actions/create-github-app-token@v2
18+
- uses: actions/checkout@v6
19+
- uses: actions/create-github-app-token@v3
2020
id: app-token
2121
with:
2222
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}

.github/workflows/publish_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: read # This is required for actions/checkout to succeed
2424
environment: allow-publish-driver-to-cdn # This is required for OIDC login (azure/login)
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- uses: actions/setup-node@v6
2828
with:
2929
node-version: 20
@@ -71,11 +71,11 @@ jobs:
7171
runs-on: ubuntu-24.04
7272
if: github.repository == 'microsoft/playwright'
7373
steps:
74-
- uses: actions/checkout@v5
74+
- uses: actions/checkout@v6
7575
- uses: actions/setup-node@v6
7676
with:
7777
node-version: 20
78-
- uses: actions/create-github-app-token@v2
78+
- uses: actions/create-github-app-token@v3
7979
id: app-token
8080
with:
8181
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}

0 commit comments

Comments
 (0)