Skip to content

Commit 987c5fa

Browse files
authored
Merge of #9335
2 parents 32de8ef + 9070aab commit 987c5fa

6 files changed

+15
-15
lines changed

.github/workflows/chore-delete-gcp-resources.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
token_format: 'access_token'
131131

132132
- name: Login to Google Artifact Registry
133-
uses: docker/login-action@v3.3.0
133+
uses: docker/login-action@v3.4.0
134134
with:
135135
registry: us-docker.pkg.dev
136136
username: oauth2accesstoken

.github/workflows/ci-coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ jobs:
103103
run: cargo llvm-cov --lcov --no-run --output-path lcov.info
104104

105105
- name: Upload coverage report to Codecov
106-
uses: codecov/codecov-action@v5.3.1
106+
uses: codecov/codecov-action@v5.4.0

.github/workflows/ci-lint.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Rust files
4646
id: changed-files-rust
47-
uses: tj-actions/changed-files@v45.0.7
47+
uses: tj-actions/changed-files@v46.0.1
4848
with:
4949
files: |
5050
**/*.rs
@@ -56,7 +56,7 @@ jobs:
5656
5757
- name: Workflow files
5858
id: changed-files-workflows
59-
uses: tj-actions/changed-files@v45.0.7
59+
uses: tj-actions/changed-files@v46.0.1
6060
with:
6161
files: |
6262
.github/workflows/*.yml
@@ -93,7 +93,7 @@ jobs:
9393
run: |
9494
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=stable --profile=default
9595
96-
- uses: Swatinem/[email protected].7
96+
- uses: Swatinem/[email protected].8
9797
with:
9898
shared-key: "clippy-cargo-lock"
9999

@@ -138,7 +138,7 @@ jobs:
138138
139139
# We don't cache `fmt` outputs because the job is quick,
140140
# and we want to use the limited GitHub actions cache space for slower jobs.
141-
#- uses: Swatinem/[email protected].7
141+
#- uses: Swatinem/[email protected].8
142142

143143
- run: |
144144
cargo fmt --all -- --check

.github/workflows/ci-unit-tests-os.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=${{ matrix.rust }} --profile=minimal
116116
117117
118-
- uses: Swatinem/[email protected].7
118+
- uses: Swatinem/[email protected].8
119119
# TODO: change Rust cache target directory on Windows,
120120
# or remove this workaround once the build is more efficient (#3005).
121121
#with:
@@ -224,7 +224,7 @@ jobs:
224224
run: |
225225
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=stable --profile=minimal
226226
227-
- uses: Swatinem/[email protected].7
227+
- uses: Swatinem/[email protected].8
228228
with:
229229
shared-key: "clippy-cargo-lock"
230230

.github/workflows/docs-deploy-firebase.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
run: |
159159
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=beta --profile=default
160160
161-
- uses: Swatinem/[email protected].7
161+
- uses: Swatinem/[email protected].8
162162

163163
- name: Build internal docs
164164
run: |

.github/workflows/sub-build-docker-image.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
# Automatic tag management and OCI Image Format Specification for labels
8989
- name: Docker meta
9090
id: meta
91-
uses: docker/metadata-action@v5.6.1
91+
uses: docker/metadata-action@v5.7.0
9292
with:
9393
# list of Docker images to use as base name for tags
9494
# We only publish images to DockerHub if a release is not a pre-release
@@ -132,22 +132,22 @@ jobs:
132132
access_token_lifetime: 10800s
133133

134134
- name: Login to Google Artifact Registry
135-
uses: docker/login-action@v3.3.0
135+
uses: docker/login-action@v3.4.0
136136
with:
137137
registry: us-docker.pkg.dev
138138
username: oauth2accesstoken
139139
password: ${{ steps.auth.outputs.access_token }}
140140

141141
- name: Login to DockerHub
142-
uses: docker/login-action@v3.3.0
142+
uses: docker/login-action@v3.4.0
143143
with:
144144
username: ${{ secrets.DOCKERHUB_USERNAME }}
145145
password: ${{ secrets.DOCKERHUB_TOKEN }}
146146

147147
# Setup Docker Buildx to use Docker Build Cloud
148148
- name: Set up Docker Buildx
149149
id: buildx
150-
uses: docker/setup-buildx-action@v3.9.0
150+
uses: docker/setup-buildx-action@v3.10.0
151151
with:
152152
version: "lab:latest"
153153
driver: cloud
@@ -156,7 +156,7 @@ jobs:
156156
# Build and push image to Google Artifact Registry, and possibly DockerHub
157157
- name: Build & push
158158
id: docker_build
159-
uses: docker/build-push-action@v6.14.0
159+
uses: docker/build-push-action@v6.15.0
160160
with:
161161
target: ${{ inputs.dockerfile_target }}
162162
context: .
@@ -188,7 +188,7 @@ jobs:
188188
# - `dev` for a pull request event
189189
- name: Docker Scout
190190
id: docker-scout
191-
uses: docker/scout-action@v1.16.3
191+
uses: docker/scout-action@v1.17.0
192192
# We only run Docker Scout on the `runtime` target, as the other targets are not meant to be released
193193
# and are commonly used for testing, and thus are ephemeral.
194194
# TODO: Remove the `contains` check once we have a better way to determine if just new vulnerabilities are present.

0 commit comments

Comments
 (0)