From 8655ca9e8b5d9975058cf969860311b6ddaedf7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 23:31:21 +0000 Subject: [PATCH] Bump the actions group with 3 updates Bumps the actions group with 3 updates: [docker/login-action](https://github.com/docker/login-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [fjogeleit/yaml-update-action](https://github.com/fjogeleit/yaml-update-action). Updates `docker/login-action` from 2 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) Updates `docker/build-push-action` from 4 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4...v6) Updates `fjogeleit/yaml-update-action` from 0.11.1 to 0.15.0 - [Release notes](https://github.com/fjogeleit/yaml-update-action/releases) - [Commits](https://github.com/fjogeleit/yaml-update-action/compare/v0.11.1...v0.15.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: fjogeleit/yaml-update-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/buildpushdev.yml | 4 ++-- .github/workflows/buildpushtagged.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/buildpushdev.yml b/.github/workflows/buildpushdev.yml index caf5485..a430b2c 100644 --- a/.github/workflows/buildpushdev.yml +++ b/.github/workflows/buildpushdev.yml @@ -14,7 +14,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -24,7 +24,7 @@ jobs: run: echo "::set-output name=sha7::$(echo ${GITHUB_SHA} | cut -c1-7)" - name: Build and push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile diff --git a/.github/workflows/buildpushtagged.yml b/.github/workflows/buildpushtagged.yml index 773c92f..221088f 100644 --- a/.github/workflows/buildpushtagged.yml +++ b/.github/workflows/buildpushtagged.yml @@ -17,7 +17,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -29,7 +29,7 @@ jobs: strip_v: true - name: Build and push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile @@ -38,7 +38,7 @@ jobs: tags: dimozone/fetch-api:${{steps.tag.outputs.tag}} - name: Update Image Version in the related HelmChart values.yaml - uses: fjogeleit/yaml-update-action@v0.11.1 + uses: fjogeleit/yaml-update-action@v0.15.0 with: valueFile: "charts/fetch-api/values-prod.yaml" propertyPath: "image.tag"