From 0f5cc21a92e05819d7ef099f65d45a99fa8ca5d2 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Tue, 3 Feb 2026 10:58:48 +0100 Subject: [PATCH] Use actions/checkout@v6 in README too --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b54c034..8574d09 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.4' # Not needed with a .ruby-version, .tool-versions or mise.toml @@ -101,7 +101,7 @@ jobs: ruby: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4', head, jruby, jruby-head, truffleruby, truffleruby-head] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} @@ -124,7 +124,7 @@ jobs: env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.4'