Skip to content

Commit 4f8e9c1

Browse files
chore(deps): bump actions/checkout from 4 to 5 (#939)
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 b24b1dc commit 4f8e9c1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/codeql-analysis.yml

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

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
# We must fetch at least the immediate parents so that if this is
3333
# a pull request then we can checkout the head.

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
wget -nc https://ftp.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_amd64.deb
3838
sudo dpkg -i libssl1.1_1.1.1w-0+deb11u1_amd64.deb
3939
# end libssl1.1 install
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
if: github.event.inputs.git-ref == ''
4242
with:
4343
fetch-depth: 0 # always fetch everything to be sure for codecov
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
if: github.event.inputs.git-ref != ''
4646
with:
4747
ref: ${{ github.event.inputs.git-ref }}
@@ -80,7 +80,7 @@ jobs:
8080
needs: [tests]
8181
runs-on: ubuntu-latest
8282
steps:
83-
- uses: actions/checkout@v4
83+
- uses: actions/checkout@v5
8484
- name: Use Node.js 20
8585
uses: actions/setup-node@v4
8686
with:

.github/workflows/website-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: read # for actions/checkout to fetch code
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Use Node.js 18
1717
uses: actions/setup-node@v4
1818
with:

.github/workflows/website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
contents: write # for JamesIves/github-pages-deploy-action to push changes in repo
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Use Node.js 18
2727
uses: actions/setup-node@v4
2828
with:

0 commit comments

Comments
 (0)