Skip to content

Commit 0a0e411

Browse files
authored
Merge pull request #19474 from striezel-stash/actions-checkout-v4
chore(workflow): update actions/checkout in workflows to v4
2 parents 9711002 + b29904f commit 0a0e411

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
echo "FETCH_DEPTH=$(($PR_COMMIT_COUNT + 1))" >> $GITHUB_ENV
2727
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
with:
3030
fetch-depth: ${{ env.FETCH_DEPTH }}
3131

@@ -67,7 +67,7 @@ jobs:
6767
node-version: [18.x]
6868

6969
steps:
70-
- uses: actions/checkout@v3
70+
- uses: actions/checkout@v4
7171

7272
- name: Use Node.js ${{ matrix.node-version }}
7373
uses: actions/setup-node@v3

.github/workflows/nightly-next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node-version: [18.x]
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
ref: next
2424

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node-version: [18.x]
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
- name: Use Node.js ${{ matrix.node-version }}
2424
uses: actions/setup-node@v3

.github/workflows/source-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: [18.x]
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- name: Use Node.js ${{ matrix.node-version }}
2020
uses: actions/setup-node@v3
@@ -59,7 +59,7 @@ jobs:
5959
node-version: [18.x]
6060

6161
steps:
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363

6464
- name: Use Node.js ${{ matrix.node-version }}
6565
uses: actions/setup-node@v3

0 commit comments

Comments
 (0)