From 33af75e987c492ed0191fe3c3df734c460f70d6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 21:38:38 +0000 Subject: [PATCH] build(deps): bump the patches group across 1 directory with 4 updates Bumps the patches group with 4 updates in the / directory: [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/login-action](https://github.com/docker/login-action), [actions/setup-node](https://github.com/actions/setup-node) and [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action). Updates `docker/setup-buildx-action` from 3.9.0 to 3.10.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3.9.0...v3.10.0) Updates `docker/login-action` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.3.0...v3.4.0) Updates `actions/setup-node` from 4.2.0 to 4.3.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4.2.0...v4.3.0) Updates `docker/setup-qemu-action` from 3.4.0 to 3.6.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v3.4.0...v3.6.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patches - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patches - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patches - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patches ... Signed-off-by: dependabot[bot] --- .github/workflows/go-with-releaser-image.yml | 4 ++-- .github/workflows/gradle-build.yml | 2 +- .github/workflows/simple-boot-image-to-ghcr.yml | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go-with-releaser-image.yml b/.github/workflows/go-with-releaser-image.yml index 9fec8c1..0226230 100644 --- a/.github/workflows/go-with-releaser-image.yml +++ b/.github/workflows/go-with-releaser-image.yml @@ -39,12 +39,12 @@ jobs: go test ./... - name: Setup docker buildx - uses: docker/setup-buildx-action@v3.9.0 + uses: docker/setup-buildx-action@v3.10.0 with: install: true - name: Docker login - uses: docker/login-action@v3.3.0 + uses: docker/login-action@v3.4.0 with: registry: ${{ inputs.image-registry }} username: ${{ secrets.image-registry-username }} diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 2c7f625..247bd79 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -50,7 +50,7 @@ jobs: java-version: ${{ inputs.java-version }} distribution: ${{ inputs.java-distribution }} - - uses: actions/setup-node@v4.2.0 + - uses: actions/setup-node@v4.3.0 if: inputs.include-nodejs with: node-version: ${{ inputs.nodejs-version }} diff --git a/.github/workflows/simple-boot-image-to-ghcr.yml b/.github/workflows/simple-boot-image-to-ghcr.yml index 28c99cc..fda3af3 100644 --- a/.github/workflows/simple-boot-image-to-ghcr.yml +++ b/.github/workflows/simple-boot-image-to-ghcr.yml @@ -46,7 +46,7 @@ jobs: java-version: ${{ inputs.java-version }} distribution: ${{ inputs.java-distribution }} - - uses: actions/setup-node@v4.2.0 + - uses: actions/setup-node@v4.3.0 if: inputs.include-nodejs with: node-version: ${{ inputs.nodejs-version }} @@ -54,13 +54,13 @@ jobs: cache-dependency-path: ${{ inputs.npm-cache-dependency-path }} - name: Setup Docker Buildx - uses: docker/setup-buildx-action@v3.9.0 + uses: docker/setup-buildx-action@v3.10.0 - name: Set up QEMU - uses: docker/setup-qemu-action@v3.4.0 + uses: docker/setup-qemu-action@v3.6.0 - name: Login to image registry - uses: docker/login-action@v3.3.0 + uses: docker/login-action@v3.4.0 with: registry: ghcr.io username: ${{ github.actor }}