Skip to content

Commit 1822540

Browse files
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] <[email protected]>
1 parent 3f603f6 commit 1822540

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/check-dist.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 6 additions & 6 deletions
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,7 +264,7 @@ jobs:
264264
steps:
265265
# Clone this repo
266266
- name: Checkout
267-
uses: actions/checkout@v3
267+
uses: actions/checkout@v4
268268
with:
269269
path: v3
270270

@@ -292,6 +292,6 @@ jobs:
292292
293293
# needed to make checkout post cleanup succeed
294294
- name: Fix Checkout v3
295-
uses: actions/checkout@v3
295+
uses: actions/checkout@v4
296296
with:
297297
path: v3

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

Lines changed: 1 addition & 1 deletion
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)