From 0140b2f0da9734d2325e0bafaa32a336d1ca7ba5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 14:12:56 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codespell.yml | 2 +- .github/workflows/linting.yml | 4 ++-- .github/workflows/main.yml | 12 ++++++------ .github/workflows/publish.yml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 629a774..5d57fdb 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -9,7 +9,7 @@ jobs: name: CodeSpell runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: CodeSpell uses: codespell-project/actions-codespell@master with: diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 935aa8b..f21bad3 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@v5 + - uses: actions/checkout@v6 - name: Yamllint uses: karancode/yamllint-github-action@master with: @@ -22,7 +22,7 @@ jobs: name: Mdformat runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Mdformat uses: ydah/mdformat-action@main with: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d5f4e6c..1c7d382 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest name: Confirm config and documentation steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.4" @@ -40,7 +40,7 @@ jobs: - spec name: "Ruby ${{ matrix.ruby }}: ${{ matrix.task }}" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ruby/setup-ruby@v1 with: ruby-version: "${{ matrix.ruby }}" @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest name: "Test coverage" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.4" @@ -67,7 +67,7 @@ jobs: - spec name: "Edge RuboCop: ${{ matrix.task }}" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use latest RuboCop from `master` run: | echo "gem 'rubocop', github: 'rubocop/rubocop'" > Gemfile.local @@ -86,7 +86,7 @@ jobs: - spec name: "Edge RuboCop RSpec: ${{ matrix.task }}" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use latest RuboCop RSpec from `master` run: | sed -e '/rubocop-rspec/d' -i Gemfile @@ -101,7 +101,7 @@ jobs: runs-on: ubuntu-latest name: RSpec 4 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use latest RSpec 4 from `4-0-dev` branch run: | sed -e "/^gem 'rspec/d" -i Gemfile diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 30a2f62..7e47136 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: id-token: write pull-requests: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: