Skip to content

Commit 108f452

Browse files
Bump actions/checkout from 4 to 5 (#379)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1ddd3f6 commit 108f452

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
contents: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: actions/setup-node@v5
1414
with:
1515
node-version-file: '.nvmrc'

.github/workflows/install-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
node: [20, 22]
1717
runs-on: ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- uses: actions/setup-node@v5
2121
with:
2222
node-version: ${{ matrix.node }}

.github/workflows/make-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: make-release
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- uses: actions/setup-node@v5
1515
with:
1616
node-version-file: '.nvmrc'

.github/workflows/update-spec-for-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }}
3030
owner: ${{ github.repository_owner }}
3131

32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
- uses: actions/setup-node@v5
3434
with:
3535
node-version-file: '.nvmrc'
@@ -48,7 +48,7 @@ jobs:
4848
echo "No files changed, proceeding";
4949
fi
5050
# Checkout the docs repo since we will want to update the files there.
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
with:
5353
repository: 'kittycad/website'
5454
path: 'docs'

0 commit comments

Comments
 (0)