Skip to content

Commit 8c852de

Browse files
Bump actions/checkout from 2 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...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 a7f3736 commit 8c852de

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Check that the Jekyll can actually build
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
- name: Build the site in the jekyll/builder container
3333
run: |
3434
docker run \
@@ -43,7 +43,7 @@ jobs:
4343
# Check markdown files are markdown-lint compliant
4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
- name: Lint markdown files with markdown-lint
4848
uses: articulate/[email protected]
4949
with:

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
outputs:
1212
target: ${{ steps.set-output.outputs.target }}
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515

1616
- name: get deployment target
1717
run: |
@@ -44,7 +44,7 @@ jobs:
4444
if: needs.set-deploy-type.outputs.target == 'gh-pages'
4545

4646
steps:
47-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v4
4848

4949
- name: Deploy Jekyll Site
5050
uses: sujaykundu777/[email protected]
@@ -59,7 +59,7 @@ jobs:
5959
if: needs.set-deploy-type.outputs.target == 'firebase'
6060

6161
steps:
62-
- uses: actions/checkout@v2
62+
- uses: actions/checkout@v4
6363

6464
- name: setup ruby
6565
uses: ruby/setup-ruby@v1

.github/workflows/jekyll.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
- name: Setup Ruby
3737
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
3838
with:

0 commit comments

Comments
 (0)