Skip to content

Commit 62e3273

Browse files
chore(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4268abd commit 62e3273

21 files changed

Lines changed: 29 additions & 29 deletions

.github/workflows/cache-invalidation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
1313
AWS_EC2_METADATA_DISABLED: true
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- run: aws configure set preview.cloudfront true
1717
- run: ./scripts/postrelease/invalidate_cdn_cache

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
node-version: [20.x]
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- name: Use Node.js ${{ matrix.node-version }}
1616
uses: actions/setup-node@v6
1717
with:
@@ -34,7 +34,7 @@ jobs:
3434
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
3535
ENABLE_NET_CONNECT: true
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v6
3838
- name: Use Node.js ${{ matrix.node-version }}
3939
uses: actions/setup-node@v6
4040
with:
@@ -57,7 +57,7 @@ jobs:
5757
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
5858
ENABLE_NET_CONNECT: true
5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v6
6161
- name: Use Node.js ${{ matrix.node-version }}
6262
uses: actions/setup-node@v6
6363
with:
@@ -80,7 +80,7 @@ jobs:
8080
node-version: [20.x]
8181
os: [ubuntu-latest]
8282
steps:
83-
- uses: actions/checkout@v4
83+
- uses: actions/checkout@v6
8484
with:
8585
fetch-depth: 0
8686
- name: Use Node.js

.github/workflows/create-cli-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# final check to ensure package.json doesn't have a dist tag, ex: '-beta'
2626
isStableRelease: ${{ fromJSON(inputs.isStableCandidate) && !steps.getVersion.outputs.channel }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929
- id: getVersion
3030
uses: ./.github/actions/get-version-and-channel/
3131
with:

.github/workflows/devcenter-doc-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
if: ${{ fromJSON(inputs.isStableRelease) }}
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- name: Use Node.js 16.x
2727
uses: actions/setup-node@v6
2828
with:

.github/workflows/direwolf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
timeout-minutes: 20
2828
environment: direwolf
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3131
- name: Install jq
3232
run: |
3333
sudo apt-get update

.github/workflows/empty-stampy-buckets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
environment: Stampy
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
- name: Empty Stampy signed and unsigned buckets
1212
env:
1313
STAMPY_ARN: ${{ secrets.STAMPY_ARN }}

.github/workflows/get-signed-from-stampy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
environment: Stampy
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
- name: download signed Windows installer from Stampy
1212
env:
1313
STAMPY_ARN: ${{ secrets.STAMPY_ARN }}

.github/workflows/pack-upload-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
1313
AWS_EC2_METADATA_DISABLED: true
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Set up Homebrew
1717
id: set-up-homebrew
1818
uses: Homebrew/actions/setup-homebrew@41775cf0c82ef066f1eb39cea1bd74697ca5b735

.github/workflows/pack-upload.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
env:
1111
HEROKU_AUTHOR: 'Heroku'
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- name: Install system deps
1515
run: |
1616
sudo apt-get update
@@ -28,7 +28,7 @@ jobs:
2828
pack_tarballs:
2929
runs-on: pub-hk-ubuntu-22.04-2xlarge
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- name: Install system deps
3333
run: |
3434
sudo apt-get update
@@ -53,7 +53,7 @@ jobs:
5353
HEROKU_DEB_KEY_ID: ${{ secrets.HEROKU_DEB_KEY_ID }}
5454
HEROKU_DEB_PUBLIC_KEY: ${{ secrets.HEROKU_DEB_PUBLIC_KEY }}
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
5757
- run: sudo mkdir -p /build
5858
- uses: actions/download-artifact@v6
5959
with:
@@ -77,7 +77,7 @@ jobs:
7777
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7878
AWS_EC2_METADATA_DISABLED: true
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v6
8181
- run: sudo mkdir -p /build
8282
- uses: actions/download-artifact@v6
8383
with:

.github/workflows/promote-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
3131
AWS_EC2_METADATA_DISABLED: true
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- name: Use Node.js 20.x
3535
uses: actions/setup-node@v6
3636
with:

0 commit comments

Comments
 (0)