Skip to content

Commit 9f21b92

Browse files
committed
Various updates
- Dep updates - Rust toolchain update - PR template update
1 parent a75bff8 commit 9f21b92

File tree

4 files changed

+10
-17
lines changed

4 files changed

+10
-17
lines changed

.github/pull_request_template.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,17 @@
77
- Not all of these items are applicable to all PRs, the author should update this template to only leave the boxes in that are relevant
88
- Please make sure all these things are done and tick the boxes
99

10-
```[tasklist]
1110
# Author
1211
- [ ] Changes are OpenShift compatible
1312
- [ ] Integration tests passed (for non trivial changes)
14-
```
1513

16-
```[tasklist]
1714
# Reviewer
1815
- [ ] Code contains useful comments
1916
- [ ] (Integration-)Test cases added
2017
- [ ] Documentation added or updated
2118
- [ ] Changelog updated
2219
- [ ] Cargo.toml only contains references to git tags (not specific commits or branches)
23-
```
2420

25-
```[tasklist]
2621
# Acceptance
2722
- [ ] Feature Tracker has been updated
2823
- [ ] Proper release label has been added
29-
```

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
CARGO_TERM_COLOR: always
1818
CARGO_INCREMENTAL: "0"
1919
CARGO_PROFILE_DEV_DEBUG: "0"
20-
RUST_TOOLCHAIN_VERSION: "1.82.0"
20+
RUST_TOOLCHAIN_VERSION: "1.85.0"
2121
RUSTFLAGS: "-D warnings"
2222
RUSTDOCFLAGS: "-D warnings"
2323
RUST_LOG: "info"
@@ -53,7 +53,7 @@ jobs:
5353
continue-on-error: ${{ matrix.checks == 'advisories' }}
5454

5555
steps:
56-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
56+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5757
- uses: EmbarkStudios/cargo-deny-action@e2f4ede4a4e60ea15ff31bc0647485d80c66cfba # v2.0.4
5858
with:
5959
command: check ${{ matrix.checks }}
@@ -62,7 +62,7 @@ jobs:
6262
name: Run Rustfmt
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
65+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6666
- uses: dtolnay/rust-toolchain@master
6767
with:
6868
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
@@ -80,7 +80,7 @@ jobs:
8080
run: |
8181
sudo apt-get update
8282
sudo apt-get install protobuf-compiler krb5-user libkrb5-dev libclang-dev liblzma-dev libssl-dev pkg-config
83-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
83+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
8484
with:
8585
submodules: recursive
8686
- uses: dtolnay/rust-toolchain@master
@@ -112,7 +112,7 @@ jobs:
112112
name: Run RustDoc
113113
runs-on: ubuntu-latest
114114
steps:
115-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
115+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
116116
- uses: dtolnay/rust-toolchain@master
117117
with:
118118
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
@@ -130,7 +130,7 @@ jobs:
130130
- run_rustdoc
131131
runs-on: ubuntu-latest
132132
steps:
133-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
133+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
134134
- uses: dtolnay/rust-toolchain@master
135135
with:
136136
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}

.github/workflows/daily_security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
audit:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1414
- uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 # v2.0.0
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pr_pre-commit.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@ on:
66

77
env:
88
CARGO_TERM_COLOR: always
9-
RUST_TOOLCHAIN_VERSION: "1.82.0"
10-
HADOLINT_VERSION: "v1.17.6"
9+
RUST_TOOLCHAIN_VERSION: "1.85.0"
1110

1211
jobs:
1312
pre-commit:
1413
runs-on: ubuntu-latest
1514
steps:
16-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1716
with:
1817
fetch-depth: 0
19-
- uses: stackabletech/actions/run-pre-commit@9bd13255f286e4b7a654617268abe1b2f37c3e0a # v0.3.0
18+
- uses: stackabletech/actions/run-pre-commit@9aae2d1c14239021bfa33c041010f6fb7adec815 # v0.8.2
2019
with:
2120
rust: ${{ env.RUST_TOOLCHAIN_VERSION }}
2221
# rust-src is required for trybuild stderr output comparison to work

0 commit comments

Comments
 (0)