Skip to content

Commit 930abc5

Browse files
Bump the github-actions group across 1 directory with 7 updates
Bumps the github-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5.8.0` | `5.10.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.11.1` | `3.12.0` | | [docker/login-action](https://github.com/docker/login-action) | `3.6.0` | `3.7.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6.18.0` | `6.19.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v6) Updates `docker/metadata-action` from 5.8.0 to 5.10.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@c1e5197...c299e40) Updates `docker/setup-buildx-action` from 3.11.1 to 3.12.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@e468171...8d2750c) Updates `docker/login-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@5e57cd1...c94ce9f) Updates `docker/build-push-action` from 6.18.0 to 6.19.2 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@2634353...10e90e3) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/metadata-action dependency-version: 5.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: 3.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: 6.19.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 526737d commit 930abc5

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
lfs: true
2020
- run: sudo apt-get install -y protobuf-compiler clang nasm pkg-config

.github/workflows/docker.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
8383
8484
- name: Checkout
85-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
85+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.0
8686
# This step checks out the code from the repository.
8787
# It uses the actions/checkout action to clone the repository into the runner's workspace.
8888

@@ -92,7 +92,7 @@ jobs:
9292
# The metadata includes information such as the image name, tags, and labels.
9393
# The metadata will be used later in the workflow to build and push the Docker image.
9494
id: meta
95-
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
95+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
9696
with:
9797
images: ${{ env.GHCR_IMAGE }}
9898

@@ -108,15 +108,15 @@ jobs:
108108
# This step sets up Docker Buildx, which is a Docker CLI plugin for extended build capabilities with BuildKit.
109109
# It uses the docker/setup-buildx-action to configure Buildx with the specified context and platforms.
110110
# The platforms are specified in the matrix and will be used for building the Docker image.
111-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
111+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
112112
with:
113113
endpoint: builders
114114
platforms: ${{ matrix.platform }}
115115

116116
- name: Login to GitHub Container Registry
117117
# This step logs in to the GitHub Container Registry (GHCR) using the docker/login-action.
118118
# It uses the GitHub actor's username and the GITHUB_TOKEN secret for authentication.
119-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
119+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
120120
with:
121121
registry: ghcr.io
122122
username: ${{ github.actor }}
@@ -131,7 +131,7 @@ jobs:
131131
# The cache-from and cache-to options are used to enable caching for the build process.
132132
# The cache is stored in GitHub Actions cache and is scoped to the repository, branch, and platform.
133133
id: build
134-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
134+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
135135
env:
136136
DOCKER_BUILDKIT: 1
137137
with:
@@ -159,7 +159,7 @@ jobs:
159159
# It uses the actions/upload-artifact action to upload the file created in the previous step.
160160
# The artifact is named digests-${{ env.PLATFORM_PAIR }}, where PLATFORM_PAIR is the platform name with '/' replaced by '-'.
161161
# The artifact is retained for 1 day, and if no files are found, it will throw an error.
162-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
162+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
163163
with:
164164
name: digests-${{ env.PLATFORM_PAIR }}
165165
path: /tmp/digests/*
@@ -196,7 +196,7 @@ jobs:
196196
# This step downloads the digest files uploaded in the build job.
197197
# It uses the actions/download-artifact action to download the artifacts with the pattern digests-*.
198198
# The downloaded files are merged into the /tmp/digests directory.
199-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
199+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
200200
with:
201201
path: /tmp/digests
202202
pattern: digests-*
@@ -208,7 +208,7 @@ jobs:
208208
# It uses the docker/metadata-action to create metadata based on the repository information.
209209
# The metadata includes information such as the image name, tags, and labels.
210210
id: meta
211-
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
211+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
212212
with:
213213
images: ${{ env.GHCR_IMAGE }}
214214
annotations: |
@@ -221,14 +221,14 @@ jobs:
221221
type=raw,value=latest,enable={{is_default_branch}}
222222
223223
- name: Set up Docker Buildx
224-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
224+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
225225
# This step sets up Docker Buildx, which is a Docker CLI plugin for extended build capabilities with BuildKit.
226226
with:
227227
driver-opts: |
228228
network=host
229229
230230
- name: Login to GitHub Container Registry
231-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
231+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
232232
# This step logs in to the GitHub Container Registry (GHCR) using the docker/login-action.
233233
# It uses the GitHub actor's username and the GITHUB_TOKEN secret for authentication.
234234
# The login is necessary to push the merged manifest list to GHCR.

.github/workflows/release.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
env:
5757
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v6
6060
with:
6161
persist-credentials: false
6262
submodules: recursive
@@ -66,7 +66,7 @@ jobs:
6666
shell: bash
6767
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.30.3/cargo-dist-installer.sh | sh"
6868
- name: Cache dist
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v7
7070
with:
7171
name: cargo-dist-cache
7272
path: ~/.cargo/bin/dist
@@ -82,7 +82,7 @@ jobs:
8282
cat plan-dist-manifest.json
8383
echo "manifest=$(jq -c "." plan-dist-manifest.json)" >> "$GITHUB_OUTPUT"
8484
- name: "Upload dist-manifest.json"
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v7
8686
with:
8787
name: artifacts-plan-dist-manifest
8888
path: plan-dist-manifest.json
@@ -122,7 +122,7 @@ jobs:
122122
- name: enable windows longpaths
123123
run: |
124124
git config --global core.longpaths true
125-
- uses: actions/checkout@v4
125+
- uses: actions/checkout@v6
126126
with:
127127
persist-credentials: false
128128
submodules: recursive
@@ -137,7 +137,7 @@ jobs:
137137
run: ${{ matrix.install_dist.run }}
138138
# Get the dist-manifest
139139
- name: Fetch local artifacts
140-
uses: actions/download-artifact@v4
140+
uses: actions/download-artifact@v8
141141
with:
142142
pattern: artifacts-*
143143
path: target/distrib/
@@ -164,7 +164,7 @@ jobs:
164164
165165
cp dist-manifest.json "$BUILD_MANIFEST_NAME"
166166
- name: "Upload artifacts"
167-
uses: actions/upload-artifact@v4
167+
uses: actions/upload-artifact@v7
168168
with:
169169
name: artifacts-build-local-${{ join(matrix.targets, '_') }}
170170
path: |
@@ -205,19 +205,19 @@ jobs:
205205
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
206206
BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json
207207
steps:
208-
- uses: actions/checkout@v4
208+
- uses: actions/checkout@v6
209209
with:
210210
persist-credentials: false
211211
submodules: recursive
212212
- name: Install cached dist
213-
uses: actions/download-artifact@v4
213+
uses: actions/download-artifact@v8
214214
with:
215215
name: cargo-dist-cache
216216
path: ~/.cargo/bin/
217217
- run: chmod +x ~/.cargo/bin/dist
218218
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
219219
- name: Fetch local artifacts
220-
uses: actions/download-artifact@v4
220+
uses: actions/download-artifact@v8
221221
with:
222222
pattern: artifacts-*
223223
path: target/distrib/
@@ -235,7 +235,7 @@ jobs:
235235
236236
cp dist-manifest.json "$BUILD_MANIFEST_NAME"
237237
- name: "Upload artifacts"
238-
uses: actions/upload-artifact@v4
238+
uses: actions/upload-artifact@v7
239239
with:
240240
name: artifacts-build-global
241241
path: |
@@ -256,19 +256,19 @@ jobs:
256256
outputs:
257257
val: ${{ steps.host.outputs.manifest }}
258258
steps:
259-
- uses: actions/checkout@v4
259+
- uses: actions/checkout@v6
260260
with:
261261
persist-credentials: false
262262
submodules: recursive
263263
- name: Install cached dist
264-
uses: actions/download-artifact@v4
264+
uses: actions/download-artifact@v8
265265
with:
266266
name: cargo-dist-cache
267267
path: ~/.cargo/bin/
268268
- run: chmod +x ~/.cargo/bin/dist
269269
# Fetch artifacts from scratch-storage
270270
- name: Fetch artifacts
271-
uses: actions/download-artifact@v4
271+
uses: actions/download-artifact@v8
272272
with:
273273
pattern: artifacts-*
274274
path: target/distrib/
@@ -281,14 +281,14 @@ jobs:
281281
cat dist-manifest.json
282282
echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT"
283283
- name: "Upload dist-manifest.json"
284-
uses: actions/upload-artifact@v4
284+
uses: actions/upload-artifact@v7
285285
with:
286286
# Overwrite the previous copy
287287
name: artifacts-dist-manifest
288288
path: dist-manifest.json
289289
# Create a GitHub Release while uploading all files to it
290290
- name: "Download GitHub Artifacts"
291-
uses: actions/download-artifact@v4
291+
uses: actions/download-artifact@v8
292292
with:
293293
pattern: artifacts-*
294294
path: artifacts
@@ -321,7 +321,7 @@ jobs:
321321
env:
322322
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
323323
steps:
324-
- uses: actions/checkout@v4
324+
- uses: actions/checkout@v6
325325
with:
326326
persist-credentials: false
327327
submodules: recursive

0 commit comments

Comments
 (0)