Skip to content

Commit 8cfb90f

Browse files
authored
Merge pull request #1103 from rubocop/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2 parents d930b59 + 522ab6d commit 8cfb90f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Yamllint
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Yamllint
1414
uses: karancode/yamllint-github-action@master
1515
with:

.github/workflows/spell_checking.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
name: Check spelling of all files with codespell
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: codespell-project/actions-codespell@v2
1616
with:
1717
ignore_words_file: codespell.txt
1818
misspell:
1919
name: Check spelling of all files in commit with misspell
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Install
2424
run: wget -O - -q https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh | sh -s -- -b .
2525
- name: Misspell

0 commit comments

Comments
 (0)