From 1f318c186c20274ebe324810ac31df12b11d4752 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 May 2026 23:14:21 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 7 updates Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `8` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [fjogeleit/yaml-update-action](https://github.com/fjogeleit/yaml-update-action) | `0.16.1` | `0.17.0` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 5 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v8) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) Updates `fjogeleit/yaml-update-action` from 0.16.1 to 0.17.0 - [Release notes](https://github.com/fjogeleit/yaml-update-action/releases) - [Commits](https://github.com/fjogeleit/yaml-update-action/compare/v0.16.1...v0.17.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: fjogeleit/yaml-update-action dependency-version: 0.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 16 ++++++++-------- .github/workflows/buildpushdev.yml | 8 ++++---- .github/workflows/buildpushtagged.yml | 10 +++++----- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 63fb9f6..2882f98 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,13 +11,13 @@ jobs: if: "!contains(github.event.head_commit.message, 'Merge pull request')" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: 'go.mod' - name: Install all tools run: make tools - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: tools path: bin/ @@ -27,11 +27,11 @@ jobs: if: "!contains(github.event.head_commit.message, 'Merge pull request')" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: 'go.mod' - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v8 with: name: tools path: bin/ @@ -45,11 +45,11 @@ jobs: if: "!contains(github.event.head_commit.message, 'Merge pull request')" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: 'go.mod' - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v8 with: name: tools path: bin/ @@ -63,11 +63,11 @@ jobs: if: "!contains(github.event.head_commit.message, 'Merge pull request')" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: 'go.mod' - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v8 with: name: tools path: bin/ diff --git a/.github/workflows/buildpushdev.yml b/.github/workflows/buildpushdev.yml index 68e5a38..2bd8f68 100644 --- a/.github/workflows/buildpushdev.yml +++ b/.github/workflows/buildpushdev.yml @@ -11,13 +11,13 @@ jobs: name: buildpushdev runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to DockerHub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -27,7 +27,7 @@ jobs: run: echo "::set-output name=sha7::$(echo ${GITHUB_SHA} | cut -c1-7)" - name: Build and push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ./Dockerfile diff --git a/.github/workflows/buildpushtagged.yml b/.github/workflows/buildpushtagged.yml index d3356bd..ab7645b 100644 --- a/.github/workflows/buildpushtagged.yml +++ b/.github/workflows/buildpushtagged.yml @@ -13,13 +13,13 @@ jobs: runs-on: ubuntu-latest steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to DockerHub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -31,7 +31,7 @@ jobs: strip_v: true - name: Build and push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ./Dockerfile @@ -42,7 +42,7 @@ jobs: tags: dimozone/${{ env.APP_NAME }}:${{steps.tag.outputs.tag}} - name: Update Image Version in the related HelmChart values.yaml - uses: fjogeleit/yaml-update-action@v0.16.1 + uses: fjogeleit/yaml-update-action@v0.17.0 with: valueFile: "charts/${{ env.APP_NAME }}/values-prod.yaml" propertyPath: "image.tag"