diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 3f29588435..5088d70c34 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -9,7 +9,7 @@ jobs: name: Yamllint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Yamllint uses: karancode/yamllint-github-action@master with: diff --git a/.github/workflows/spell_checking.yml b/.github/workflows/spell_checking.yml index 38f0e366c6..fec1e652b4 100644 --- a/.github/workflows/spell_checking.yml +++ b/.github/workflows/spell_checking.yml @@ -11,7 +11,7 @@ jobs: name: Check spelling of all files with codespell runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: codespell-project/actions-codespell@v2 with: ignore_words_file: codespell.txt @@ -19,7 +19,7 @@ jobs: name: Check spelling of all files in commit with misspell runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install run: wget -O - -q https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh | sh -s -- -b . - name: Misspell