From 7c938d34b4722f6ca87e5c87d5a91307573f8d21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Dec 2025 21:04:21 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 6 updates Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.0` | `6.0.1` | | [ruby/setup-ruby](https://github.com/ruby/setup-ruby) | `1.268.0` | `1.275.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5.0.0` | `6.0.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6.0.0` | `7.0.0` | | [rubygems/configure-rubygems-credentials](https://github.com/rubygems/configure-rubygems-credentials) | `079b868399574998fd0fe9df2e03528f38cc6fa0` | `069e7d747e6bb9b12c1a8d43ea4235ab9f3941da` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `3.0.0` | `3.1.0` | Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v6...v6.0.1) Updates `ruby/setup-ruby` from 1.268.0 to 1.275.0 - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](https://github.com/ruby/setup-ruby/compare/8aeb6ff8030dd539317f8e1769a044873b56ea71...d354de180d0c9e813cfddfcbdc079945d4be589b) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/330a01c490aca151604b8cf639adc76d48f6c5d4...b7c566a772e6b6bfb58ed0dc250532a479d7789f) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/018cc2cf5baa6db3ef3c5f8a56943fffe632ef53...37930b1c2abaa49bbe596cd826c3c89aef350131) Updates `rubygems/configure-rubygems-credentials` from 079b868399574998fd0fe9df2e03528f38cc6fa0 to 069e7d747e6bb9b12c1a8d43ea4235ab9f3941da - [Release notes](https://github.com/rubygems/configure-rubygems-credentials/releases) - [Commits](https://github.com/rubygems/configure-rubygems-credentials/compare/079b868399574998fd0fe9df2e03528f38cc6fa0...069e7d747e6bb9b12c1a8d43ea4235ab9f3941da) Updates `actions/attest-build-provenance` from 3.0.0 to 3.1.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest-build-provenance/compare/977bb373ede98d70efdf65b84cb5f73e068dcc2a...00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: ruby/setup-ruby dependency-version: 1.275.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: rubygems/configure-rubygems-credentials dependency-version: '069e7d747e6bb9b12c1a8d43ea4235ab9f3941da' dependency-type: direct:production dependency-group: github-actions - dependency-name: actions/attest-build-provenance dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/acceptance.yml | 4 ++-- .github/workflows/build.yml | 4 ++-- .github/workflows/copilot-setup-steps.yml | 4 ++-- .github/workflows/integration.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/release.yml | 20 ++++++++++---------- .github/workflows/test.yml | 4 ++-- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/acceptance.yml b/.github/workflows/acceptance.yml index af7ef62..afba4e6 100644 --- a/.github/workflows/acceptance.yml +++ b/.github/workflows/acceptance.yml @@ -16,9 +16,9 @@ jobs: steps: - name: checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 + - uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b # pin@v1.275.0 with: bundler-cache: true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ff6322..b077e35 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,9 +22,9 @@ jobs: steps: - name: checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 + - uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b # pin@v1.275.0 with: bundler-cache: true diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index d3a3955..a18ad1b 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -12,9 +12,9 @@ jobs: contents: read steps: - name: checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 + - uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b # pin@v1.275.0 with: bundler-cache: true diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 59ede07..df472d5 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -19,9 +19,9 @@ jobs: steps: - name: checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 + - uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b # pin@v1.275.0 with: bundler-cache: true ruby-version: ${{ matrix.ruby }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 031cd5f..60f192d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,9 +16,9 @@ jobs: steps: - name: checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 + - uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b # pin@v1.275.0 with: bundler-cache: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fa30a32..57383c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,11 +25,11 @@ jobs: steps: - name: checkout - uses: actions/checkout@c2d88d3ecc89a9ef08eebf45d9637801dcee7eb5 # pin@v5.0.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v5.0.1 with: persist-credentials: false - - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 + - uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b # pin@v1.275.0 with: bundler-cache: false @@ -46,7 +46,7 @@ jobs: run: script/build - name: upload artifact - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # pin@v5.0.0 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # pin@v6.0.0 id: upload-artifact with: name: ${{ steps.build.outputs.artifact_dir }} @@ -62,11 +62,11 @@ jobs: packages: write id-token: write steps: - - uses: actions/checkout@c2d88d3ecc89a9ef08eebf45d9637801dcee7eb5 # pin@v5.0.1 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # pin@v5.0.1 with: persist-credentials: false - - uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # pin@v6.0.0 + - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # pin@v7.0.0 with: artifact-ids: ${{ needs.build.outputs.artifact-id }} path: ${{ needs.build.outputs.artifact_dir }} @@ -86,7 +86,7 @@ jobs: run: | GEM_HOST_API_KEY=${GITHUB_TOKEN} gem push --key github --host https://rubygems.pkg.github.com/${OWNER} $ARTIFACT_PATH/${GEM_NAME}-${GEM_VERSION}.gem - - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 + - uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b # pin@v1.275.0 with: bundler-cache: false @@ -94,7 +94,7 @@ jobs: run: script/bootstrap - name: Configure RubyGems Credentials - uses: rubygems/configure-rubygems-credentials@079b868399574998fd0fe9df2e03528f38cc6fa0 # pin@main + uses: rubygems/configure-rubygems-credentials@069e7d747e6bb9b12c1a8d43ea4235ab9f3941da # pin@main - name: sign ruby gem env: @@ -138,13 +138,13 @@ jobs: contents: read steps: - - uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # pin@v6.0.0 + - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # pin@v7.0.0 with: path: ${{ needs.build.outputs.artifact_dir }} artifact-ids: ${{ needs.build.outputs.artifact-id }} - name: attest build provenance - uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # pin@v3.0.0 + uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # pin@v3.1.0 with: subject-path: "${{ needs.build.outputs.artifact_dir }}/${{ needs.build.outputs.gem_path }}" @@ -154,7 +154,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # pin@v6.0.0 + - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # pin@v7.0.0 with: path: ${{ needs.build.outputs.artifact_dir }} artifact-ids: ${{ needs.build.outputs.artifact-id }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4e3d40b..3b996e9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,9 +19,9 @@ jobs: steps: - name: checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0 + - uses: ruby/setup-ruby@d354de180d0c9e813cfddfcbdc079945d4be589b # pin@v1.275.0 with: bundler-cache: true ruby-version: ${{ matrix.ruby }}