Skip to content

Commit b80ff79

Browse files
Bump actions/checkout from 3 to 4 (#1697)
* Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Apply suggestions from code review * . --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cory Miller <13227161+cory-miller@users.noreply.github.com>
1 parent b1ec302 commit b80ff79

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/check-dist.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626

2727
- name: Set Node.js 20.x
2828
uses: actions/setup-node@v4

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343

4444
- name: Initialize CodeQL
4545
uses: github/codeql-action/init@v3

.github/workflows/licensed.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
name: Check licenses
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- run: npm ci
1414
- run: npm run licensed-check

.github/workflows/test.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-node@v4
2020
with:
2121
node-version: 20.x
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- run: npm ci
2424
- run: npm run build
2525
- run: npm run format-check
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
# Clone this repo
3939
- name: Checkout
40-
uses: actions/checkout@v4.1.1
40+
uses: actions/checkout@v4
4141

4242
# Basic checkout
4343
- name: Checkout basic
@@ -202,7 +202,7 @@ jobs:
202202
steps:
203203
# Clone this repo
204204
- name: Checkout
205-
uses: actions/checkout@v3
205+
uses: actions/checkout@v4
206206

207207
# Basic checkout using git
208208
- name: Checkout basic
@@ -234,7 +234,7 @@ jobs:
234234
steps:
235235
# Clone this repo
236236
- name: Checkout
237-
uses: actions/checkout@v3
237+
uses: actions/checkout@v4
238238

239239
# Basic checkout using git
240240
- name: Checkout basic
@@ -264,13 +264,13 @@ jobs:
264264
steps:
265265
# Clone this repo
266266
- name: Checkout
267-
uses: actions/checkout@v3
267+
uses: actions/checkout@v4
268268
with:
269-
path: v3
269+
path: v4
270270

271271
# Basic checkout using git
272272
- name: Checkout basic
273-
uses: ./v3
273+
uses: ./v4
274274
with:
275275
ref: test-data/v2/basic
276276
- name: Verify basic
@@ -291,7 +291,7 @@ jobs:
291291
git fetch --no-tags --depth=1 origin +refs/heads/main:refs/remotes/origin/main
292292
293293
# needed to make checkout post cleanup succeed
294-
- name: Fix Checkout v3
295-
uses: actions/checkout@v3
294+
- name: Fix Checkout v4
295+
uses: actions/checkout@v4
296296
with:
297-
path: v3
297+
path: v4

.github/workflows/update-main-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# Note this update workflow can also be used as a rollback tool.
2323
# For that reason, it's best to pin `actions/checkout` to a known, stable version
2424
# (typically, about two releases back).
25-
- uses: actions/checkout@v4.1.1
25+
- uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
- name: Git config

0 commit comments

Comments
 (0)