Skip to content

Commit 3ae5bdb

Browse files
Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [azure/login](https://github.com/azure/login), [actions/github-script](https://github.com/actions/github-script) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). Updates `azure/login` from 2 to 3 - [Release notes](https://github.com/azure/login/releases) - [Commits](Azure/login@v2...v3) Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) 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) --- updated-dependencies: - dependency-name: azure/login dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '9' 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0f3d22d commit 3ae5bdb

9 files changed

Lines changed: 15 additions & 15 deletions

.github/workflows/create_test_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
HTML_REPORT_URL: 'https://mspwblobreport.z1.web.core.windows.net/run-${{ github.event.workflow_run.id }}-${{ github.event.workflow_run.run_attempt }}-${{ github.sha }}/index.html'
4040

4141
- name: Azure Login
42-
uses: azure/login@v2
42+
uses: azure/login@v3
4343
with:
4444
client-id: ${{ secrets.AZURE_BLOB_REPORTS_CLIENT_ID }}
4545
tenant-id: ${{ secrets.AZURE_BLOB_REPORTS_TENANT_ID }}
@@ -57,7 +57,7 @@ jobs:
5757
AZCOPY_AUTO_LOGIN_TYPE: AZCLI
5858

5959
- name: Publish Report URL as Commit Status
60-
uses: actions/github-script@v8
60+
uses: actions/github-script@v9
6161
with:
6262
script: |
6363
await github.rest.repos.createCommitStatus({

.github/workflows/pr_check_client_side_changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.repository == 'microsoft/playwright'
1717
steps:
1818
- uses: actions/checkout@v6
19-
- uses: actions/create-github-app-token@v2
19+
- uses: actions/create-github-app-token@v3
2020
id: app-token
2121
with:
2222
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}
@@ -27,7 +27,7 @@ jobs:
2727
playwright-java
2828
playwright-dotnet
2929
- name: Create GitHub issue
30-
uses: actions/github-script@v8
30+
uses: actions/github-script@v9
3131
with:
3232
github-token: ${{ steps.app-token.outputs.token }}
3333
script: |

.github/workflows/publish_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: utils/publish_all_packages.sh --release
5555

5656
- name: Azure Login
57-
uses: azure/login@v2
57+
uses: azure/login@v3
5858
with:
5959
client-id: ${{ secrets.AZURE_PW_CDN_CLIENT_ID }}
6060
tenant-id: ${{ secrets.AZURE_PW_CDN_TENANT_ID }}
@@ -75,7 +75,7 @@ jobs:
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 }}

.github/workflows/publish_release_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- run: npm ci
3131
- run: npm run build
3232
- name: Azure Login
33-
uses: azure/login@v2
33+
uses: azure/login@v3
3434
with:
3535
client-id: ${{ secrets.AZURE_DOCKER_CLIENT_ID }}
3636
tenant-id: ${{ secrets.AZURE_DOCKER_TENANT_ID }}

.github/workflows/roll_browser_into_playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ jobs:
5252
git add .
5353
git commit -m "feat(${BROWSER}): roll to r${REVISION}"
5454
git push origin $BRANCH_NAME --force
55-
- uses: actions/create-github-app-token@v2
55+
- uses: actions/create-github-app-token@v3
5656
id: app-token
5757
with:
5858
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}
5959
private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }}
6060
- name: Create Pull Request
61-
uses: actions/github-script@v8
61+
uses: actions/github-script@v9
6262
if: ${{ steps.prepare-branch.outputs.exists == '0' }}
6363
with:
6464
github-token: ${{ steps.app-token.outputs.token }}

.github/workflows/roll_nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
git add .
3434
git commit -m "chore: roll driver/Dockerfile to recent Node.js LTS version"
3535
git push origin $BRANCH_NAME
36-
- uses: actions/create-github-app-token@v2
36+
- uses: actions/create-github-app-token@v3
3737
id: app-token
3838
with:
3939
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}
4040
private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }}
4141
- name: Create Pull Request
4242
if: ${{ steps.prepare-branch.outputs.HAS_CHANGES == '1' }}
43-
uses: actions/github-script@v8
43+
uses: actions/github-script@v9
4444
with:
4545
github-token: ${{ steps.app-token.outputs.token }}
4646
script: |

.github/workflows/roll_stable_test_runner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
git add .
3939
git commit -m "test: roll stable-test-runner to ${{ steps.bump.outputs.VERSION }}"
4040
git push origin $BRANCH_NAME
41-
- uses: actions/create-github-app-token@v2
41+
- uses: actions/create-github-app-token@v3
4242
id: app-token
4343
with:
4444
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}
4545
private-key: ${{ secrets.PLAYWRIGHT_PRIVATE_KEY }}
4646
- name: Create Pull Request
4747
if: ${{ steps.prepare-branch.outputs.HAS_CHANGES == '1' }}
48-
uses: actions/github-script@v8
48+
uses: actions/github-script@v9
4949
with:
5050
github-token: ${{ steps.app-token.outputs.token }}
5151
script: |

.github/workflows/tests_bidi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Azure Login
8080
if: ${{ !cancelled() && github.ref == 'refs/heads/main' }}
81-
uses: azure/login@v2
81+
uses: azure/login@v3
8282
with:
8383
client-id: ${{ secrets.AZURE_BLOB_REPORTS_CLIENT_ID }}
8484
tenant-id: ${{ secrets.AZURE_BLOB_REPORTS_TENANT_ID }}

.github/workflows/trigger_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: "trigger"
1212
runs-on: ubuntu-24.04
1313
steps:
14-
- uses: actions/create-github-app-token@v2
14+
- uses: actions/create-github-app-token@v3
1515
id: app-token
1616
with:
1717
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}

0 commit comments

Comments
 (0)