diff --git a/.github/workflows/github_release.yml b/.github/workflows/github_release.yml index 7fd6dea17..0871684ec 100644 --- a/.github/workflows/github_release.yml +++ b/.github/workflows/github_release.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Create GitHub Release uses: ncipollo/release-action@v1 diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 5088d70c3..093294559 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@v4 + - uses: actions/checkout@v5 - name: Yamllint uses: karancode/yamllint-github-action@master with: diff --git a/.github/workflows/spell_checking.yml b/.github/workflows/spell_checking.yml index 9fcb6fb22..f3d3f8665 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@v4 + - uses: actions/checkout@v5 - 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@v4 + - uses: actions/checkout@v5 - name: Install run: wget -O - -q https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh | sh -s -- -b . - name: Misspell diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 875cf0538..7f56be2a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: set up Ruby uses: ruby/setup-ruby@v1 with: @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: set up Ruby uses: ruby/setup-ruby@v1 with: @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest name: Prism steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: set up Ruby uses: ruby/setup-ruby@v1 with: @@ -73,7 +73,7 @@ jobs: runs-on: ubuntu-latest name: Check documentation syntax steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: set up Ruby uses: ruby/setup-ruby@v1 with: @@ -86,7 +86,7 @@ jobs: runs-on: ubuntu-latest name: Check the oldest supported RuboCop version steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use the oldest supported RuboCop run: | sed -e "/gem 'rubocop', github: 'rubocop\/rubocop'/d" \