Skip to content

Commit 68dd733

Browse files
dependabot[bot]holly-cummins
authored andcommitted
Bump actions/checkout from 4 to 5
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]>
1 parent 4f7cb3f commit 68dd733

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build_and_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
unit-test:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- uses: actions/setup-node@v4
2727
with:
2828
node-version: '18'
@@ -35,7 +35,7 @@ jobs:
3535
build:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: Get current date
4040
id: date
4141
run: |
@@ -109,7 +109,7 @@ jobs:
109109
contents: write
110110
runs-on: ubuntu-latest
111111
steps:
112-
- uses: actions/checkout@v4 # not needed for the code, but needed for the git config
112+
- uses: actions/checkout@v5 # not needed for the code, but needed for the git config
113113
- name: Download Built site
114114
uses: actions/download-artifact@v5
115115
with:
@@ -128,7 +128,7 @@ jobs:
128128
needs: [ deploy ]
129129
runs-on: ubuntu-latest
130130
steps:
131-
- uses: actions/checkout@v4 # not needed for the code, but needed for the git config
131+
- uses: actions/checkout@v5 # not needed for the code, but needed for the git config
132132
- name: Download Built site
133133
uses: actions/download-artifact@v5
134134
with:

.github/workflows/check-external-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
statuses: read
2626
if: github.event.workflow_run.event == 'schedule' && github.event.workflow_run.conclusion == 'success'
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- uses: actions/setup-node@v4
3030
with:
3131
node-version: '18'

0 commit comments

Comments
 (0)