Skip to content

Commit e96139a

Browse files
chore: Bump Rust and Go dependencies (#307)
* chore: bump dependencies * chore: remove dead code and fix clippy warnings * chore: improve complex block Co-authored-by: Techassi <[email protected]> * chore: allow dead code that us used elsewhere Co-authored-by: Techassi <[email protected]> * ci: bump the rust-toolchain version * ci: bump udeps to 0.1.47 * ci: bump the rust-toolchain version * chore: Bump Go dependencies * chore: Add changelog entry * chore: Update PR link in changelog * chore: Add Rust dependencies entry to changelog * ci: Bump setup-go action version * chore: Bump Go to 1.22.5 --------- Co-authored-by: Techassi <[email protected]> Co-authored-by: Techassi <[email protected]>
1 parent c55f692 commit e96139a

File tree

21 files changed

+2769
-2249
lines changed

21 files changed

+2769
-2249
lines changed

.github/workflows/pr_cockpit.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ on:
1515
- "go.sum"
1616

1717
env:
18-
RUST_VERSION: 1.75.0
19-
GO_VERSION: '^1.22.2'
18+
RUST_VERSION: 1.79.0
19+
GO_VERSION: '^1.22.5'
2020
CARGO_TERM_COLOR: always
2121
CARGO_INCREMENTAL: "0"
2222
CARGO_PROFILE_DEV_DEBUG: "0"
@@ -95,7 +95,7 @@ jobs:
9595
with:
9696
toolchain: ${{ env.RUST_VERSION }}
9797

98-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
98+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
9999
with:
100100
go-version: ${{ env.GO_VERSION }}
101101

.github/workflows/pr_general.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ name: Pull Request General
44
on: workflow_call
55

66
env:
7-
RUST_VERSION: 1.75.0
8-
GO_VERSION: '^1.22.2'
7+
RUST_VERSION: 1.79.0
8+
GO_VERSION: '^1.22.5'
99
CARGO_TERM_COLOR: always
1010
CARGO_INCREMENTAL: "0"
1111
CARGO_PROFILE_DEV_DEBUG: "0"
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
toolchain: ${{ env.RUST_VERSION }}
3030

31-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
31+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
3232
with:
3333
go-version: ${{ env.GO_VERSION }}
3434

@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
key: udeps
4444
cache-all-crates: "true"
45-
- run: cargo install --locked [email protected].39
45+
- run: cargo install --locked [email protected].47
4646
- run: cargo udeps --workspace
4747

4848
run_cargodeny:
@@ -89,7 +89,7 @@ jobs:
8989
toolchain: ${{ env.RUST_VERSION }}
9090
components: clippy
9191

92-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
92+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
9393
with:
9494
go-version: ${{ env.GO_VERSION }}
9595

@@ -132,7 +132,7 @@ jobs:
132132
toolchain: ${{ env.RUST_VERSION }}
133133
components: rustfmt
134134

135-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
135+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
136136
with:
137137
go-version: ${{ env.GO_VERSION }}
138138

@@ -159,7 +159,7 @@ jobs:
159159
with:
160160
toolchain: ${{ env.RUST_VERSION }}
161161

162-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
162+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
163163
with:
164164
go-version: ${{ env.GO_VERSION }}
165165

.github/workflows/pr_stackablectl.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ on:
1414
- "extra/**"
1515

1616
env:
17-
RUST_VERSION: 1.75.0
18-
GO_VERSION: '^1.22.2'
17+
RUST_VERSION: 1.79.0
18+
GO_VERSION: '^1.22.5'
1919
CARGO_TERM_COLOR: always
2020
CARGO_INCREMENTAL: "0"
2121
CARGO_PROFILE_DEV_DEBUG: "0"
@@ -61,7 +61,7 @@ jobs:
6161
toolchain: ${{ env.RUST_VERSION }}
6262
targets: ${{ matrix.target }}
6363

64-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
64+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
6565
with:
6666
go-version: ${{ env.GO_VERSION }}
6767

.github/workflows/release_stackablectl.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- "stackablectl-[0-9]+.[0-9]+.[0-9]+**"
88

99
env:
10-
RUST_VERSION: 1.75.0
10+
RUST_VERSION: 1.79.0
1111
CARGO_TERM_COLOR: always
1212
CARGO_INCREMENTAL: "0"
1313
CARGO_PROFILE_DEV_DEBUG: "0"
@@ -46,7 +46,7 @@ jobs:
4646
toolchain: ${{ env.RUST_VERSION }}
4747
targets: ${{ matrix.target }}
4848

49-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
49+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
5050
with:
5151
go-version: '^1.22.2'
5252

0 commit comments

Comments
 (0)