From d542a1e13848f3986227a2a5cc0061100bcb5870 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 06:42:27 +0000 Subject: [PATCH 1/4] fix(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test-checkout-rust-project.yml | 4 ++-- .github/workflows/test-determine-binary-name.yml | 4 ++-- .github/workflows/test-determine-release-url.yml | 4 ++-- .github/workflows/test-install-release-binary.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-checkout-rust-project.yml b/.github/workflows/test-checkout-rust-project.yml index 076d18a..a938a2c 100644 --- a/.github/workflows/test-checkout-rust-project.yml +++ b/.github/workflows/test-checkout-rust-project.yml @@ -5,7 +5,7 @@ jobs: test-with-default-arguments: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./checkout-rust-project - name: Assert project is checked out run: grep "# GitHub Actions" README.md @@ -15,7 +15,7 @@ jobs: test-with-clippy-component-installed: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./checkout-rust-project with: rust-components: clippy diff --git a/.github/workflows/test-determine-binary-name.yml b/.github/workflows/test-determine-binary-name.yml index 4612b06..6d62b40 100644 --- a/.github/workflows/test-determine-binary-name.yml +++ b/.github/workflows/test-determine-binary-name.yml @@ -28,7 +28,7 @@ jobs: expected-suffix: aarch64-apple-darwin runs-on: ${{ matrix.os.image }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./determine-binary-name id: run-action with: @@ -76,7 +76,7 @@ jobs: expected-suffix: macos-arm runs-on: ${{ matrix.os.image }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./determine-binary-name id: run-action with: diff --git a/.github/workflows/test-determine-release-url.yml b/.github/workflows/test-determine-release-url.yml index 4f9f72c..45a1042 100644 --- a/.github/workflows/test-determine-release-url.yml +++ b/.github/workflows/test-determine-release-url.yml @@ -16,7 +16,7 @@ jobs: expected-url: https://github.com/example-org/example-app/releases/latest/download/my-binary-aarch64-apple-darwin runs-on: ${{ matrix.os.image }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./determine-release-url id: run-action with: @@ -43,7 +43,7 @@ jobs: expected-url: https://github.com/demo-org/demo-app/releases/latest/download/program-macos-arm runs-on: ${{ matrix.os.image }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./determine-release-url id: run-action with: diff --git a/.github/workflows/test-install-release-binary.yml b/.github/workflows/test-install-release-binary.yml index df71d5a..7e19298 100644 --- a/.github/workflows/test-install-release-binary.yml +++ b/.github/workflows/test-install-release-binary.yml @@ -12,7 +12,7 @@ jobs: - macos-26 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./install-release-binary id: run-action with: @@ -31,7 +31,7 @@ jobs: - macos-26 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./install-release-binary id: run-action with: From d22eef2fd09b8f4089cf99be627a0d280b35c2a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 06:42:30 +0000 Subject: [PATCH 2/4] fix(deps): bump armakuni/github-actions from 0.19.14 to 0.19.15 Bumps [armakuni/github-actions](https://github.com/armakuni/github-actions) from 0.19.14 to 0.19.15. - [Release notes](https://github.com/armakuni/github-actions/releases) - [Changelog](https://github.com/armakuni/github-actions/blob/main/CHANGELOG.md) - [Commits](https://github.com/armakuni/github-actions/compare/v0.19.14...v0.19.15) --- updated-dependencies: - dependency-name: armakuni/github-actions dependency-version: 0.19.15 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/test-determine-binary-name.yml | 12 ++++++------ .github/workflows/test-determine-release-url.yml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-determine-binary-name.yml b/.github/workflows/test-determine-binary-name.yml index 4612b06..93a0a43 100644 --- a/.github/workflows/test-determine-binary-name.yml +++ b/.github/workflows/test-determine-binary-name.yml @@ -33,17 +33,17 @@ jobs: id: run-action with: name: my-binary - - uses: armakuni/github-actions/assert-equals@v0.19.14 + - uses: armakuni/github-actions/assert-equals@v0.19.15 name: Check name with: expected: ${{ matrix.os.expected-name }} actual: ${{ steps.run-action.outputs.name }} - - uses: armakuni/github-actions/assert-equals@v0.19.14 + - uses: armakuni/github-actions/assert-equals@v0.19.15 name: Check name-with-arch with: expected: ${{ matrix.os.expected-name-with-arch }} actual: ${{ steps.run-action.outputs.name-with-arch }} - - uses: armakuni/github-actions/assert-equals@v0.19.14 + - uses: armakuni/github-actions/assert-equals@v0.19.15 name: Check suffix with: expected: ${{ matrix.os.expected-suffix }} @@ -86,17 +86,17 @@ jobs: windows-suffix: windows macos-suffix: macos macos-arm-suffix: macos-arm - - uses: armakuni/github-actions/assert-equals@v0.19.14 + - uses: armakuni/github-actions/assert-equals@v0.19.15 name: Check name with: expected: ${{ matrix.os.expected-name }} actual: ${{ steps.run-action.outputs.name }} - - uses: armakuni/github-actions/assert-equals@v0.19.14 + - uses: armakuni/github-actions/assert-equals@v0.19.15 name: Check name-with-arch with: expected: ${{ matrix.os.expected-name-with-arch }} actual: ${{ steps.run-action.outputs.name-with-arch }} - - uses: armakuni/github-actions/assert-equals@v0.19.14 + - uses: armakuni/github-actions/assert-equals@v0.19.15 name: Check suffix with: expected: ${{ matrix.os.expected-suffix }} diff --git a/.github/workflows/test-determine-release-url.yml b/.github/workflows/test-determine-release-url.yml index 4f9f72c..d24588f 100644 --- a/.github/workflows/test-determine-release-url.yml +++ b/.github/workflows/test-determine-release-url.yml @@ -23,7 +23,7 @@ jobs: binary-name: my-binary owner: example-org repository: example-app - - uses: armakuni/github-actions/assert-equals@v0.19.14 + - uses: armakuni/github-actions/assert-equals@v0.19.15 name: Check url with: expected: ${{ matrix.os.expected-url }} @@ -54,7 +54,7 @@ jobs: windows-suffix: windows macos-suffix: macos macos-arm-suffix: macos-arm - - uses: armakuni/github-actions/assert-equals@v0.19.14 + - uses: armakuni/github-actions/assert-equals@v0.19.15 name: Check url with: expected: ${{ matrix.os.expected-url }} From 2f8245b8620f13971ec90b7e7c7f57cda384f0eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 06:42:31 +0000 Subject: [PATCH 3/4] fix(deps): bump armakuni/github-actions/.github/workflows/check-conventional-commits.yml Bumps [armakuni/github-actions/.github/workflows/check-conventional-commits.yml](https://github.com/armakuni/github-actions) from 0.19.14 to 0.19.15. - [Release notes](https://github.com/armakuni/github-actions/releases) - [Changelog](https://github.com/armakuni/github-actions/blob/main/CHANGELOG.md) - [Commits](https://github.com/armakuni/github-actions/compare/v0.19.14...v0.19.15) --- updated-dependencies: - dependency-name: armakuni/github-actions/.github/workflows/check-conventional-commits.yml dependency-version: 0.19.15 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index aad8c7b..93b497e 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -8,7 +8,7 @@ permissions: jobs: check-conventional-commits: - uses: armakuni/github-actions/.github/workflows/check-conventional-commits.yml@v0.19.14 + uses: armakuni/github-actions/.github/workflows/check-conventional-commits.yml@v0.19.15 test-checkout-rust-project: uses: ./.github/workflows/test-checkout-rust-project.yml From 33d0c88cef48b8edc363759dc65092a5c0608f3b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 06:42:33 +0000 Subject: [PATCH 4/4] fix(deps): bump armakuni/github-actions/.github/workflows/tag-and-release.yml Bumps [armakuni/github-actions/.github/workflows/tag-and-release.yml](https://github.com/armakuni/github-actions) from 0.19.14 to 0.19.15. - [Release notes](https://github.com/armakuni/github-actions/releases) - [Changelog](https://github.com/armakuni/github-actions/blob/main/CHANGELOG.md) - [Commits](https://github.com/armakuni/github-actions/compare/v0.19.14...v0.19.15) --- updated-dependencies: - dependency-name: armakuni/github-actions/.github/workflows/tag-and-release.yml dependency-version: 0.19.15 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index aad8c7b..1d3464d 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -37,4 +37,4 @@ jobs: if: github.ref == 'refs/heads/main' needs: - all-tests-succeeded - uses: armakuni/github-actions/.github/workflows/tag-and-release.yml@v0.19.14 + uses: armakuni/github-actions/.github/workflows/tag-and-release.yml@v0.19.15