Skip to content

Commit 9d5d8e7

Browse files
Bump the github-actions group across 1 directory with 5 updates (#73)
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [dtolnay/rust-toolchain](https://github.com/dtolnay/rust-toolchain) | `b3b07ba8b418998c39fb20f53e8b695cdcc8de1b` | `6d653acede28d24f02e3cd41383119e8b1b35921` | | [taiki-e/install-action](https://github.com/taiki-e/install-action) | `2.56.19` | `2.62.38` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.2` | `5.0.0` | | [actions/checkout](https://github.com/actions/checkout) | `4.2.2` | `5.0.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.3.0` | `6.0.0` | Updates `dtolnay/rust-toolchain` from b3b07ba8b418998c39fb20f53e8b695cdcc8de1b to 6d653acede28d24f02e3cd41383119e8b1b35921 - [Release notes](https://github.com/dtolnay/rust-toolchain/releases) - [Commits](dtolnay/rust-toolchain@b3b07ba...6d653ac) Updates `taiki-e/install-action` from 2.56.19 to 2.62.38 - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](taiki-e/install-action@c99cc51...c5b1b6f) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...330a01c) 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 `actions/download-artifact` from 4.3.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@d3f86a1...018cc2c) --- updated-dependencies: - dependency-name: dtolnay/rust-toolchain dependency-version: 6d653acede28d24f02e3cd41383119e8b1b35921 dependency-type: direct:production dependency-group: github-actions - dependency-name: taiki-e/install-action dependency-version: 2.62.38 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - 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/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9074834 commit 9d5d8e7

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/docker.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Setup Rust toolchain
18-
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b
18+
uses: dtolnay/rust-toolchain@6d653acede28d24f02e3cd41383119e8b1b35921
1919
with:
2020
toolchain: stable
2121

2222
- name: Install development tools
23-
uses: taiki-e/install-action@c99cc51b309eee71a866715cfa08c922f11cf898 # v2.56.19
23+
uses: taiki-e/install-action@c5b1b6f479c32f356cc6f4ba672a47f63853b13b # v2.62.38
2424
with:
2525
tool: cargo-clone,cross
2626

@@ -32,7 +32,7 @@ jobs:
3232
mv target/${{ matrix.rust_arch }}/release/diesel target/diesel.${{ matrix.docker_arch }}
3333
3434
- name: Upload artifacts
35-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
35+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
3636
with:
3737
name: artifact-diesel-${{ matrix.rust_arch }}
3838
path: diesel_cli/target/diesel.${{ matrix.docker_arch }}
@@ -49,12 +49,12 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Setup Rust toolchain
52-
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b
52+
uses: dtolnay/rust-toolchain@6d653acede28d24f02e3cd41383119e8b1b35921
5353
with:
5454
toolchain: stable
5555

5656
- name: Install development tools
57-
uses: taiki-e/install-action@c99cc51b309eee71a866715cfa08c922f11cf898 # v2.56.19
57+
uses: taiki-e/install-action@c5b1b6f479c32f356cc6f4ba672a47f63853b13b # v2.62.38
5858
with:
5959
tool: cargo-clone,cross
6060

@@ -67,7 +67,7 @@ jobs:
6767
mv target/${{ matrix.rust_arch }}/release/cargo-sqlx target/cargo-sqlx.${{ matrix.docker_arch }}
6868
6969
- name: Upload artifacts
70-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
70+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
7171
with:
7272
name: artifact-sqlx-cli-${{ matrix.rust_arch }}
7373
path: |
@@ -86,12 +86,12 @@ jobs:
8686
runs-on: ubuntu-latest
8787
steps:
8888
- name: Setup Rust toolchain
89-
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b
89+
uses: dtolnay/rust-toolchain@6d653acede28d24f02e3cd41383119e8b1b35921
9090
with:
9191
toolchain: stable
9292

9393
- name: Install development tools
94-
uses: taiki-e/install-action@c99cc51b309eee71a866715cfa08c922f11cf898 # v2.56.19
94+
uses: taiki-e/install-action@c5b1b6f479c32f356cc6f4ba672a47f63853b13b # v2.62.38
9595
with:
9696
tool: cargo-clone,cross
9797

@@ -103,7 +103,7 @@ jobs:
103103
mv target/${{ matrix.rust_arch }}/release/cargo-llvm-lines target/cargo-llvm-lines.${{ matrix.docker_arch }}
104104
105105
- name: Upload artifacts
106-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
106+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
107107
with:
108108
name: artifact-cargo-llvm-lines-${{ matrix.rust_arch }}
109109
path: cargo-llvm-lines/target/cargo-llvm-lines.${{ matrix.docker_arch }}
@@ -147,10 +147,10 @@ jobs:
147147
docker-images: true
148148
swap-storage: true
149149

150-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
150+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
151151

152152
- name: Download prebuild binaries
153-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
153+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
154154
with:
155155
pattern: artifact-*
156156
merge-multiple: true

0 commit comments

Comments
 (0)