Skip to content

Commit 9b6fe95

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](actions/checkout@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 23bf689 commit 9b6fe95

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/checkbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: check if result.html is up to date with index.html
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: install nodejs
1616
run: sudo apt-get update && sudo apt-get -y install nodejs npm && npm install inline-source
1717
- name: modify build sccript

.github/workflows/linters.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Javascript linter (standard)
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Init yarn
1616
run: yarn install
1717
- name: Run Standard
@@ -21,7 +21,7 @@ jobs:
2121
name: CSS linter (stylelint)
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Init yarn
2626
run: yarn install
2727
- name: Run stylelint
@@ -30,7 +30,7 @@ jobs:
3030
name: HTML linter (html5validator)
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- uses: Cyb3r-Jak3/[email protected]
3535
with:
3636
root: html/

0 commit comments

Comments
 (0)