Skip to content

Commit 77008a9

Browse files
authored
Misc updates (#6185)
- Updated web-vault to v2025.7.2 - Updated Debian to v13 a.k.a. Trixie - Adjusted Debian build where needed - Updated several crates - Updated workflows - Updated pre-commit Signed-off-by: BlackDex <[email protected]>
1 parent 7f386d3 commit 77008a9

File tree

11 files changed

+77
-85
lines changed

11 files changed

+77
-85
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120

121121
# Login to Docker Hub
122122
- name: Login to Docker Hub
123-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
123+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
124124
with:
125125
username: ${{ secrets.DOCKERHUB_USERNAME }}
126126
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -136,7 +136,7 @@ jobs:
136136
137137
# Login to GitHub Container Registry
138138
- name: Login to GitHub Container Registry
139-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
139+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
140140
with:
141141
registry: ghcr.io
142142
username: ${{ github.repository_owner }}
@@ -153,7 +153,7 @@ jobs:
153153
154154
# Login to Quay.io
155155
- name: Login to Quay.io
156-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
156+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
157157
with:
158158
registry: quay.io
159159
username: ${{ secrets.QUAY_USERNAME }}

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ jobs:
4848
severity: CRITICAL,HIGH
4949

5050
- name: Upload Trivy scan results to GitHub Security tab
51-
uses: github/codeql-action/upload-sarif@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
51+
uses: github/codeql-action/upload-sarif@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
5252
with:
5353
sarif_file: 'trivy-results.sarif'

.github/workflows/zizmor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
security-events: write
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020
with:
2121
persist-credentials: false
2222

2323
- name: Run zizmor
24-
uses: zizmorcore/zizmor-action@f52a838cfabf134edcbaa7c8b3677dde20045018 # v0.1.1
24+
uses: zizmorcore/zizmor-action@5ca5fc7a4779c5263a3ffa0e1f693009994446d1 # v0.1.2
2525
with:
2626
# intentionally not scanning the entire repository,
2727
# since it contains integration tests.

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v5.0.0
4+
rev: v6.0.0
55
hooks:
66
- id: check-yaml
77
- id: check-json

Cargo.lock

Lines changed: 41 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ ring = "0.17.14"
101101
subtle = "2.6.1"
102102

103103
# UUID generation
104-
uuid = { version = "1.17.0", features = ["v4"] }
104+
uuid = { version = "1.18.0", features = ["v4"] }
105105

106106
# Date and time libraries
107107
chrono = { version = "0.4.41", features = ["clock", "serde"], default-features = false }
108108
chrono-tz = "0.10.4"
109109
time = "0.3.41"
110110

111111
# Job scheduler
112-
job_scheduler_ng = "2.2.0"
112+
job_scheduler_ng = "2.3.0"
113113

114114
# Data encoding library Hex/Base32/Base64
115115
data-encoding = "2.9.0"
@@ -121,7 +121,7 @@ jsonwebtoken = "9.3.1"
121121
totp-lite = "2.0.1"
122122

123123
# Yubico Library
124-
yubico = { package = "yubico_ng", version = "0.13.0", features = ["online-tokio"], default-features = false }
124+
yubico = { package = "yubico_ng", version = "0.14.1", features = ["online-tokio"], default-features = false }
125125

126126
# WebAuthn libraries
127127
# danger-allow-state-serialisation is needed to save the state in the db
@@ -143,7 +143,7 @@ email_address = "0.2.9"
143143
handlebars = { version = "6.3.2", features = ["dir_source"] }
144144

145145
# HTTP client (Used for favicons, version check, DUO and HIBP API)
146-
reqwest = { version = "0.12.22", features = ["rustls-tls", "rustls-tls-native-roots", "stream", "json", "deflate", "gzip", "brotli", "zstd", "socks", "cookies", "charset", "http2", "system-proxy"], default-features = false}
146+
reqwest = { version = "0.12.23", features = ["rustls-tls", "rustls-tls-native-roots", "stream", "json", "deflate", "gzip", "brotli", "zstd", "socks", "cookies", "charset", "http2", "system-proxy"], default-features = false}
147147
hickory-resolver = "0.25.2"
148148

149149
# Favicon extraction libraries
@@ -167,7 +167,7 @@ openssl = "0.10.73"
167167
pico-args = "0.5.0"
168168

169169
# Macro ident concatenation
170-
pastey = "0.1.0"
170+
pastey = "0.1.1"
171171
governor = "0.10.1"
172172

173173
# OIDC for SSO
@@ -196,8 +196,8 @@ grass_compiler = { version = "0.13.4", default-features = false }
196196
opendal = { version = "0.54.0", features = ["services-fs"], default-features = false }
197197

198198
# For retrieving AWS credentials, including temporary SSO credentials
199-
anyhow = { version = "1.0.98", optional = true }
200-
aws-config = { version = "1.8.4", features = ["behavior-version-latest", "rt-tokio", "credentials-process", "sso"], default-features = false, optional = true }
199+
anyhow = { version = "1.0.99", optional = true }
200+
aws-config = { version = "1.8.5", features = ["behavior-version-latest", "rt-tokio", "credentials-process", "sso"], default-features = false, optional = true }
201201
aws-credential-types = { version = "1.2.5", optional = true }
202202
aws-smithy-runtime-api = { version = "1.8.7", optional = true }
203203
http = { version = "1.3.1", optional = true }

docker/DockerSettings.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
vault_version: "v2025.7.0"
3-
vault_image_digest: "sha256:f6ac819a2cd9e226f2cd2ec26196ede94a41e672e9672a11b5f307a19278b15e"
2+
vault_version: "v2025.7.2"
3+
vault_image_digest: "sha256:e40b20eeffbcccb27db6c08c3aaa1cf7d3c92333f634dec26a077590e910e1c9"
44
# Cross Compile Docker Helper Scripts v1.6.1
55
# We use the linux/amd64 platform shell scripts since there is no difference between the different platform scripts
66
# https://github.com/tonistiigi/xx | https://hub.docker.com/r/tonistiigi/xx/tags
77
xx_image_digest: "sha256:9c207bead753dda9430bdd15425c6518fc7a03d866103c516a2c6889188f5894"
88
rust_version: 1.89.0 # Rust version to be used
9-
debian_version: bookworm # Debian release name to be used
9+
debian_version: trixie # Debian release name to be used
1010
alpine_version: "3.22" # Alpine version to be used
1111
# For which platforms/architectures will we try to build images
1212
platforms: ["linux/amd64", "linux/arm64", "linux/arm/v7", "linux/arm/v6"]

0 commit comments

Comments
 (0)