Skip to content

Commit 225d0ae

Browse files
chore(deps): update actions/checkout action to v5
1 parent e6c29be commit 225d0ae

12 files changed

+17
-17
lines changed

.github/workflows/codeql-analysis.yml

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

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
# Initializes the CodeQL tools for scanning.
2323
- name: Initialize CodeQL

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fossa:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1616

1717
- uses: fossas/fossa-action@93a52ecf7c3ac7eb40f5de77fd69b1a19524de94 # v1.5.0
1818
with:

.github/workflows/label-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- uses: actions/labeler@v5
1818
with:
1919
configuration-path: '.github/component-label-map.yml'

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- uses: actions/setup-node@v4
1818
with:
1919
node-version: 18

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# Needed for GitHub OIDC token if publish_results is true
2020
id-token: write
2121
steps:
22-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323
with:
2424
persist-credentials: false
2525

.github/workflows/peer-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
image: node:20
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Install script dependencies
2222
run: npm ci

.github/workflows/release-please-validate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
image: node:20
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Install glob
2222
run: npm install glob

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
# The logic below handles the npm publication:
1818
- name: Checkout Repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222

@@ -43,7 +43,7 @@ jobs:
4343
- name: Checkout release PR
4444
# only checkout if a PR has been created, otherwise this will fail
4545
if: ${{ steps.release.outputs.pr }}
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
with:
4848
ref: release-please--branches--main
4949
# use a token so that workflows on the PR run when we push later
@@ -65,7 +65,7 @@ jobs:
6565
- name: Checkout Repository
6666
# only checkout if a release has been created
6767
if: ${{ steps.release.outputs.releases_created }}
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v5
6969
with:
7070
fetch-depth: 0
7171

.github/workflows/test-all-versions.pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
args: ${{ steps.npm-workspace-args.outputs.args }}
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
- name: Parse labels into npm workspace arguments
2727
id: npm-workspace-args
2828
run: |

.github/workflows/test-all-versions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
NODE_OPTIONS: --max-old-space-size=4096
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0
3131
# Use the same Node.js version used for `release-please` workflow.
@@ -160,7 +160,7 @@ jobs:
160160
NPM_CONFIG_UNSAFE_PERM: true
161161
steps:
162162
- name: Checkout
163-
uses: actions/checkout@v4
163+
uses: actions/checkout@v5
164164
with:
165165
fetch-depth: 0
166166
- uses: actions/setup-node@v4

0 commit comments

Comments
 (0)