Skip to content

Commit a7e0cdf

Browse files
chore(deps): bump the github-actions group with 5 updates (#939)
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `9.2.0` | `9.2.1` | | [docker/bake-action](https://github.com/docker/bake-action) | `7.1.0` | `7.2.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `4.0.0` | `4.1.0` | | [docker/login-action](https://github.com/docker/login-action) | `4.1.0` | `4.2.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `7.1.0` | `7.2.0` | Updates `golangci/golangci-lint-action` from 9.2.0 to 9.2.1 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@1e7e51e...82606bf) Updates `docker/bake-action` from 7.1.0 to 7.2.0 - [Release notes](https://github.com/docker/bake-action/releases) - [Commits](docker/bake-action@a66e1c8...6614cfa) Updates `docker/setup-buildx-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@4d04d5d...d7f5e7f) Updates `docker/login-action` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@4907a6d...650006c) Updates `docker/build-push-action` from 7.1.0 to 7.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@bcafcac...f9f3042) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-version: 9.2.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: docker/bake-action dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7be06f5 commit a7e0cdf

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: echo "version=$(grep '^GOLANGCI_LINT_VERSION=' .versions | cut -d= -f2)" >> "$GITHUB_OUTPUT"
3535

3636
- name: Install golangci-lint
37-
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20
37+
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee
3838
with:
3939
version: ${{ steps.golangci-lint-version.outputs.version }}
4040
install-only: true

.github/workflows/cli-validate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
-
3636
name: Generate matrix
3737
id: generate
38-
uses: docker/bake-action/subaction/matrix@a66e1c87e2eca0503c343edf1d208c716d54b8a8
38+
uses: docker/bake-action/subaction/matrix@6614cfa25eff9a0b2b2697efb0b6159e7680d584
3939
with:
4040
files: ./cmd/cli/docker-bake.hcl
4141
target: validate
@@ -54,12 +54,12 @@ jobs:
5454
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
5555
-
5656
name: Set up Docker Buildx
57-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
57+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
5858
with:
5959
buildkitd-flags: --debug
6060
-
6161
name: Validate
62-
uses: docker/bake-action@a66e1c87e2eca0503c343edf1d208c716d54b8a8 # v7
62+
uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 # v7
6363
with:
6464
files: ./cmd/cli/docker-bake.hcl
6565
targets: ${{ matrix.target }}

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cache: true
3030

3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
32+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
3333

3434
- name: Run integration tests
3535
run: make integration-tests

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -305,21 +305,21 @@ jobs:
305305
echo "openvino=$OPENVINO_IMAGE" >> "$GITHUB_OUTPUT"
306306
307307
- name: Log in to DockerHub
308-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121
308+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
309309
with:
310310
username: "docker"
311311
password: ${{ secrets.ORG_ACCESS_TOKEN }}
312312

313313
- name: Set up Buildx
314-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
314+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
315315
with:
316316
version: "lab:latest"
317317
driver: cloud
318318
endpoint: "docker/make-product-smarter"
319319
install: true
320320

321321
- name: Build CPU image
322-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
322+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
323323
with:
324324
file: Dockerfile
325325
target: final-llamacpp
@@ -335,7 +335,7 @@ jobs:
335335
tags: ${{ steps.tags.outputs.cpu }}
336336

337337
- name: Build CUDA image
338-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
338+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
339339
with:
340340
file: Dockerfile
341341
target: final-llamacpp
@@ -351,7 +351,7 @@ jobs:
351351
tags: ${{ steps.tags.outputs.cuda }}
352352

353353
- name: Build vLLM CUDA image
354-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
354+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
355355
with:
356356
file: Dockerfile
357357
target: final-vllm
@@ -368,7 +368,7 @@ jobs:
368368
tags: ${{ steps.tags.outputs.vllm-cuda }}
369369

370370
- name: Build SGLang CUDA image
371-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
371+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
372372
with:
373373
file: Dockerfile
374374
target: final-sglang
@@ -385,7 +385,7 @@ jobs:
385385
tags: ${{ steps.tags.outputs.sglang-cuda }}
386386

387387
- name: Build ROCm image
388-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
388+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
389389
with:
390390
file: Dockerfile
391391
target: final-llamacpp
@@ -400,7 +400,7 @@ jobs:
400400
provenance: mode=max
401401
tags: ${{ steps.tags.outputs.rocm }}
402402
- name: Build MUSA image
403-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
403+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
404404
with:
405405
file: Dockerfile
406406
target: final-llamacpp
@@ -416,7 +416,7 @@ jobs:
416416
tags: ${{ steps.tags.outputs.musa }}
417417

418418
- name: Build OpenVINO image
419-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
419+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
420420
with:
421421
file: Dockerfile
422422
target: final-llamacpp

0 commit comments

Comments
 (0)