Skip to content

Commit 8ad7f66

Browse files
Bump actions/checkout from 4 to 5 (#3090)
1 parent 70ae1e4 commit 8ad7f66

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-22.04
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Use Node.js
2828
uses: actions/setup-node@v4
2929
with:
@@ -45,7 +45,7 @@ jobs:
4545
node: [18, 20, 22, 24]
4646

4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- name: Use Node.js ${{ matrix.node }}
5050
uses: actions/setup-node@v4
5151
with:
@@ -120,7 +120,7 @@ jobs:
120120

121121
- name: Checkout repository
122122
if: steps.automerge.outputs.mergeResult == 'merged'
123-
uses: actions/checkout@v4
123+
uses: actions/checkout@v5
124124

125125
- name: Use Node.js
126126
if: steps.automerge.outputs.mergeResult == 'merged'

.github/workflows/codeql.yml

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

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3

.github/workflows/dependabot-automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Check if PR should be auto-merged
1717
uses: ahmadnassri/action-dependabot-auto-merge@v2

.github/workflows/nightly-dev-release.yml

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

2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0 # Fetch the history, or this action won't work
2828

.github/workflows/official-release.yml

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

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0 # Fetch the history, or this action won't work
2525

0 commit comments

Comments
 (0)