From fe1504a50af9a40b66c2142f12815f91956d62c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 04:24:30 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/gempush.yml | 2 +- .github/workflows/pre-release-tests.yml | 2 +- .github/workflows/tests.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/gempush.yml b/.github/workflows/gempush.yml index 635c8155..0ab6caf3 100644 --- a/.github/workflows/gempush.yml +++ b/.github/workflows/gempush.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Ruby 3.2 uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/pre-release-tests.yml b/.github/workflows/pre-release-tests.yml index d11e06cb..51a92a4b 100644 --- a/.github/workflows/pre-release-tests.yml +++ b/.github/workflows/pre-release-tests.yml @@ -21,7 +21,7 @@ jobs: RAILS_VERSION: ${{ matrix.rails-version }} name: integration-tests-against-rc (Rails ${{ matrix.rails-version }}) steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 619ba721..034387bf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,7 +25,7 @@ jobs: RAILS_VERSION: ${{ matrix.rails-version }} name: integration-tests (Rails ${{ matrix.rails-version }} with Ruby ${{ matrix.ruby-version }}) steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install SQLite dependencies run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev - name: Set up Ruby @@ -51,7 +51,7 @@ jobs: name: linter-check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install SQLite dependencies run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev - name: Set up Ruby @@ -68,7 +68,7 @@ jobs: name: Yaml linting check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Yaml lint check uses: ibiqlik/action-yamllint@v3 with: @@ -78,7 +78,7 @@ jobs: name: smoke-test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install SQLite dependencies run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev - name: Set up Ruby