From cace51d8f45f8ab0107fa64bfb475bdc34e0b2b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 04:02:08 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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..9427c136 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@v5 - 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..f10a04ec 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@v5 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 619ba721..40777bd6 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@v5 - 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@v5 - 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@v5 - 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@v5 - name: Install SQLite dependencies run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev - name: Set up Ruby