From 201b30cf66aabcff720ebd42e40aaac8af07b29f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 16:32:53 +0000 Subject: [PATCH] chore(deps): Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [action-stars/build-workflows/.github/workflows/build-oci-image.yaml](https://github.com/action-stars/build-workflows), [ruby/setup-ruby](https://github.com/ruby/setup-ruby) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/checkout` from 7.0.0 to 7.0.1 - [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/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1) Updates `action-stars/build-workflows/.github/workflows/build-oci-image.yaml` from 0.13.0 to 0.14.0 - [Release notes](https://github.com/action-stars/build-workflows/releases) - [Commits](https://github.com/action-stars/build-workflows/compare/edcb1cca0ace2b51717e08992963b84c7e13b719...b75de3ac9d21cf4bfc9c394c39225206633ce73d) Updates `ruby/setup-ruby` from 1.318.0 to 1.321.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/8e41b362d2589a22a44c1cfa214b3c83052c195b...95ef2b042f9d7a56d8268cba8559e2842e2ad01b) Updates `docker/login-action` from 4.4.0 to 4.5.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/af1e73f918a031802d376d3c8bbc3fe56130a9b0...06fb636fac595d6fb4b28a5dfcb21a6f5091859c) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: action-stars/build-workflows/.github/workflows/build-oci-image.yaml dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: ruby/setup-ruby dependency-version: 1.321.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 4.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 4 ++-- .github/workflows/bundle-lock.yaml | 4 ++-- .github/workflows/release.yaml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2488d5d..15f4e47 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout id: checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 2 @@ -52,7 +52,7 @@ jobs: build: name: Build - uses: action-stars/build-workflows/.github/workflows/build-oci-image.yaml@edcb1cca0ace2b51717e08992963b84c7e13b719 # v0.13.0 + uses: action-stars/build-workflows/.github/workflows/build-oci-image.yaml@b75de3ac9d21cf4bfc9c394c39225206633ce73d # v0.14.0 needs: setup if: github.event_name == 'workflow_dispatch' || needs.setup.outputs.changed == 'true' permissions: diff --git a/.github/workflows/bundle-lock.yaml b/.github/workflows/bundle-lock.yaml index 6668bbe..d314da0 100644 --- a/.github/workflows/bundle-lock.yaml +++ b/.github/workflows/bundle-lock.yaml @@ -18,9 +18,9 @@ jobs: shell: bash steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - uses: ruby/setup-ruby@8e41b362d2589a22a44c1cfa214b3c83052c195b # v1.318.0 + - uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0 - name: Lock run: | diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 773dd9d..0d49286 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,7 +35,7 @@ jobs: build: name: Build - uses: action-stars/build-workflows/.github/workflows/build-oci-image.yaml@edcb1cca0ace2b51717e08992963b84c7e13b719 # v0.13.0 + uses: action-stars/build-workflows/.github/workflows/build-oci-image.yaml@b75de3ac9d21cf4bfc9c394c39225206633ce73d # v0.14.0 needs: setup permissions: artifact-metadata: write @@ -83,7 +83,7 @@ jobs: ghactl tool install --owner oras-project --repo oras --version latest - name: Login to DockerHub - uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0 + uses: docker/login-action@06fb636fac595d6fb4b28a5dfcb21a6f5091859c # v4.5.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -114,7 +114,7 @@ jobs: shell: bash steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Get changelog entry id: changelog_reader