From 3279794615d0b075042d62c05a9f360c4ac10c0a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 03:25:44 +0000 Subject: [PATCH] ci: bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/create-github-app-token](https://github.com/actions/create-github-app-token) and [MarcoIeni/release-plz-action](https://github.com/marcoieni/release-plz-action). Updates `actions/checkout` from 4.2.2 to 5.0.0 - [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/11bd71901bbe5b1630ceea73d27597364c9af683...08c6903cd8c0fde910a37f88322edcfb5dd907a8) Updates `actions/create-github-app-token` from 2.0.6 to 2.1.1 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/df432ceedc7162793a195dd1713ff69aefc7379e...a8d616148505b5069dccd32f177bb87d7f39123b) Updates `MarcoIeni/release-plz-action` from 0.5.107 to 0.5.112 - [Release notes](https://github.com/marcoieni/release-plz-action/releases) - [Commits](https://github.com/marcoieni/release-plz-action/compare/dde7b63054529c440305a924e5849c68318bcc9a...f9715bc3b46e211f764f4440a221ddb89ae8abb3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/create-github-app-token dependency-version: 2.1.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: MarcoIeni/release-plz-action dependency-version: 0.5.112 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/nightly.yml | 2 +- .github/workflows/presubmit.yml | 8 ++++---- .github/workflows/publish.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1d1a3ab..438f57a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -8,7 +8,7 @@ jobs: name: cargo deny --all-features check runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: inherit-toolchain: true diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index bff010a..bdcb2ff 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -6,7 +6,7 @@ jobs: name: cargo test --all-features runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: inherit-toolchain: true @@ -16,7 +16,7 @@ jobs: name: cargo +nightly fmt -- --check runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: components: rustfmt @@ -27,7 +27,7 @@ jobs: name: cargo +nightly cranky --all-targets -- -D warnings runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: components: clippy @@ -39,7 +39,7 @@ jobs: name: cargo deny --all-features check licenses runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - name: Install Rust toolchain uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2c776a5..df081cb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,13 +17,13 @@ jobs: # Generating a GitHub token, so that PRs and tags created by # the release-plz-action can trigger actions workflows. - name: Generate GitHub token - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e + uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b id: generate-token with: app-id: ${{ secrets.RELEASE_PLZ_APP_ID }} # <-- GitHub App ID secret name private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }} # <-- GitHub App private key secret name - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 with: fetch-depth: 0 - name: Install Rust toolchain @@ -32,7 +32,7 @@ jobs: inherit-toolchain: true bins: cross - name: Run release-plz - uses: MarcoIeni/release-plz-action@dde7b63054529c440305a924e5849c68318bcc9a + uses: MarcoIeni/release-plz-action@f9715bc3b46e211f764f4440a221ddb89ae8abb3 env: GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}