Skip to content

Commit 3ad19e1

Browse files
ci(action): update actions/checkout action to v5
1 parent 8eee0c1 commit 3ad19e1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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@v4
2323
with:
2424
node-version: lts/*

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- 22
1818
- 24
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Use Node.js ${{ matrix.node_version }}
2222
uses: actions/setup-node@v4
2323
with:
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- run: exit 1
3535
if: ${{ needs.test_matrix.result != 'success' }}
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
- run: npm ci
3838
- run: npm run lint
3939
if: ${{ always() }}

.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@v4
1717
with:
1818
cache: npm

0 commit comments

Comments
 (0)