From ae7fdee5fa91349f0727738708b4f883de2badeb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 21:00:30 +0000 Subject: [PATCH] Update github action changes --- .github/workflows/docker-image.yml | 12 ++++++------ .github/workflows/golang.yaml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index c37f279..3fb34fc 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -22,30 +22,30 @@ jobs: steps: # Get the repository's code - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 # https://github.com/docker/setup-qemu-action - name: Set up QEMU - uses: docker/setup-qemu-action@v3 + uses: docker/setup-qemu-action@v4 with: image: tonistiigi/binfmt@sha256:66e11bea77a5ea9d6f0fe79b57cd2b189b5d15b93a2bdb925be22949232e4e55 # https://github.com/docker/setup-buildx-action - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 with: buildkitd-config-inline: | [worker.oci] max-parallelism = 1 - name: Login to Docker Hub if: github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Docker meta id: METAID # used in the next step - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: # list of Docker images to use as base name for tags images: | @@ -62,7 +62,7 @@ jobs: type=semver,pattern=v{{major}} type=sha - name: Build and push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . platforms: linux/amd64,linux/arm64/v8 diff --git a/.github/workflows/golang.yaml b/.github/workflows/golang.yaml index f1f5b3c..5dbbe02 100644 --- a/.github/workflows/golang.yaml +++ b/.github/workflows/golang.yaml @@ -6,7 +6,7 @@ jobs: name: GoLang Basics steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: FS Permissions # workaround for permissions with contaner attempting to create directories run: chmod 777 -R "$(pwd)"