Skip to content

Commit 0a2ad8c

Browse files
ci(action): update actions/checkout action to v5 (#808)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 0a8fdd9 commit 0a2ad8c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/codeql.yml

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

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
# We must fetch at least the immediate parents so that if this is
2121
# a pull request then we can checkout the head.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: release
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- uses: actions/setup-node@v5
2323
with:
2424
node-version: lts/*

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- 22
1919
- 24
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Use Node.js ${{ matrix.node_version }}
2323
uses: actions/setup-node@v5
2424
with:
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- run: exit 1
3838
if: ${{ needs.test_matrix.result != 'success' }}
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- uses: actions/setup-node@v5
4141
with:
4242
node-version: "lts/*"

.github/workflows/update-prettier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
app-id: ${{ vars.OCTOKIT_APP_ID }}
1414
private-key: ${{ secrets.OCTOKIT_APP_PRIVATE_KEY }}
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- uses: actions/setup-node@v5
1717
with:
1818
cache: npm

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
app-id: ${{ vars.OCTOKIT_APP_ID }}
2020
private-key: ${{ secrets.OCTOKIT_APP_PRIVATE_KEY }}
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
token: ${{ steps.app-token.outputs.token }}
2424
- uses: actions/setup-node@v5

0 commit comments

Comments
 (0)