Skip to content

Commit d1bae0c

Browse files
ci: 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) | `4.2.2` | `5.0.0` | | [taiki-e/setup-cross-toolchain-action](https://github.com/taiki-e/setup-cross-toolchain-action) | `1.29.1` | `1.32.1` | | [taiki-e/upload-rust-binary-action](https://github.com/taiki-e/upload-rust-binary-action) | `1.26.0` | `1.27.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `2.0.6` | `2.1.4` | | [MarcoIeni/release-plz-action](https://github.com/marcoieni/release-plz-action) | `0.5.107` | `0.5.118` | 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](actions/checkout@11bd719...08c6903) Updates `taiki-e/setup-cross-toolchain-action` from 1.29.1 to 1.32.1 - [Release notes](https://github.com/taiki-e/setup-cross-toolchain-action/releases) - [Changelog](https://github.com/taiki-e/setup-cross-toolchain-action/blob/main/CHANGELOG.md) - [Commits](taiki-e/setup-cross-toolchain-action@0123528...84e58a4) Updates `taiki-e/upload-rust-binary-action` from 1.26.0 to 1.27.0 - [Release notes](https://github.com/taiki-e/upload-rust-binary-action/releases) - [Changelog](https://github.com/taiki-e/upload-rust-binary-action/blob/main/CHANGELOG.md) - [Commits](taiki-e/upload-rust-binary-action@db10148...3962470) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/create-github-app-token` from 2.0.6 to 2.1.4 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@df432ce...6701853) Updates `MarcoIeni/release-plz-action` from 0.5.107 to 0.5.118 - [Release notes](https://github.com/marcoieni/release-plz-action/releases) - [Commits](release-plz/action@dde7b63...d529f73) --- 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: taiki-e/setup-cross-toolchain-action dependency-version: 1.32.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: taiki-e/upload-rust-binary-action dependency-version: 1.27.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' 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.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: MarcoIeni/release-plz-action dependency-version: 0.5.118 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 68498f2 commit d1bae0c

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/build_binaries.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@ jobs:
4545
timeout-minutes: 60
4646
steps:
4747
- name: Checkout repository
48-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
48+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
4949
- name: Install Rust toolchain
5050
uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670
5151
with:
5252
inherit-toolchain: true
5353
bins: cross
54-
- uses: taiki-e/setup-cross-toolchain-action@0123528f956f923e7a476f4cc04882bc005e7c89
54+
- uses: taiki-e/setup-cross-toolchain-action@84e58a47fc2bcd3821a2aa8c153595bbffb0e10f
5555
with:
5656
target: ${{ matrix.target }}
5757
if: startsWith(matrix.os, 'ubuntu') && !contains(matrix.target, '-musl')
5858
- run: echo "RUSTFLAGS=${RUSTFLAGS} -C target-feature=+crt-static" >> "${GITHUB_ENV}"
5959
if: endsWith(matrix.target, 'windows-msvc')
60-
- uses: taiki-e/upload-rust-binary-action@db101489b509ad1c7acce163e118eb36a1650f98
60+
- uses: taiki-e/upload-rust-binary-action@3962470d6e7f1993108411bc3f75a135ec67fc8c
6161
with:
6262
bin: shpool
6363
target: ${{ matrix.target }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: cargo deny --all-features check
99
runs-on: ubuntu-22.04
1010
steps:
11-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
11+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
1212
- uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670
1313
with:
1414
inherit-toolchain: true

.github/workflows/presubmit.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
name: cargo test --all-features
77
runs-on: ubuntu-22.04
88
steps:
9-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
9+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
1010
- uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670
1111
with:
1212
inherit-toolchain: true
1313
- run: sudo apt-get install zsh fish libpam0g-dev
1414
- run: SHPOOL_LEAVE_TEST_LOGS=true cargo test --all-features
1515
- name: Archive Logs
1616
if: always()
17-
uses: actions/upload-artifact@v4
17+
uses: actions/upload-artifact@v5
1818
id: artifact-upload-step
1919
with:
2020
name: test-logs
@@ -26,7 +26,7 @@ jobs:
2626
# name: cargo +nightly miri test
2727
# runs-on: ubuntu-22.04
2828
# steps:
29-
# - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
29+
# - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
3030
# - uses: moonrepo/setup-rust@b8edcc56aab474d90c7cf0bb8beeaf8334c15e9f
3131
# with:
3232
# components: miri
@@ -38,7 +38,7 @@ jobs:
3838
name: cargo +nightly fmt -- --check
3939
runs-on: ubuntu-22.04
4040
steps:
41-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
41+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
4242
- uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670
4343
with:
4444
components: rustfmt
@@ -50,7 +50,7 @@ jobs:
5050
name: cargo +nightly cranky --all-targets -- -D warnings
5151
runs-on: ubuntu-22.04
5252
steps:
53-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
53+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
5454
- uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670
5555
with:
5656
components: clippy
@@ -63,7 +63,7 @@ jobs:
6363
name: cargo deny --all-features check licenses
6464
runs-on: ubuntu-22.04
6565
steps:
66-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
66+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
6767
- name: Install Rust toolchain
6868
uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670
6969
with:

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ jobs:
1717
# Generating a GitHub token, so that PRs and tags created by
1818
# the release-plz-action can trigger actions workflows.
1919
- name: Generate GitHub token
20-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e
20+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf
2121
id: generate-token
2222
with:
2323
app-id: ${{ secrets.RELEASE_PLZ_APP_ID }} # <-- GitHub App ID secret name
2424
private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }} # <-- GitHub App private key secret name
2525
- name: Checkout repository
26-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
26+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
2727
with:
2828
fetch-depth: 0
2929
- name: Install Rust toolchain
3030
uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670
3131
with:
3232
bins: cross
3333
- name: Run release-plz
34-
uses: MarcoIeni/release-plz-action@dde7b63054529c440305a924e5849c68318bcc9a
34+
uses: MarcoIeni/release-plz-action@487eb7b5c085a664d5c5ca05f4159bd9b591182a
3535
env:
3636
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
3737
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)