From 60f0364b663753c1992aa1fdf7107cb6b1d6fc1d Mon Sep 17 00:00:00 2001 From: Jam Balaya Date: Sat, 23 Nov 2024 09:55:21 +0900 Subject: [PATCH 1/2] docs: bump GitHub Actions in example --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ebf650f..ac7668f 100644 --- a/README.md +++ b/README.md @@ -253,20 +253,20 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ env.SHA }} - name: Setup Docker buildx - uses: docker/setup-buildx-action@v2.5.0 + uses: docker/setup-buildx-action@v3.7.1 with: driver-opts: | - image=moby/buildkit:v0.10.6 + image=moby/buildkit:v0.17.2 # Login against a Docker registry except on PR # https://github.com/docker/login-action - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@v2.1.0 + uses: docker/login-action@v3.3.0 with: registry: ${{ env.REGISTRY }} username: ${{ secrets.DOCKER_USER }} @@ -276,7 +276,7 @@ jobs: # https://github.com/docker/metadata-action - name: Extract Docker metadata id: meta - uses: docker/metadata-action@v4.4.0 + uses: docker/metadata-action@v5.6.1 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} labels: | @@ -290,7 +290,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v4.0.0 + uses: docker/build-push-action@v6.9.0 with: context: . push: true @@ -362,7 +362,7 @@ When GitHub code scanning is enabled, the `sarif-file` input can be used to uplo ```yaml - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v4.0.0 + uses: docker/build-push-action@v6.9.0 with: context: . push: true From c17ef67580c7cd64158e548957bfd7910bc4d700 Mon Sep 17 00:00:00 2001 From: Jam Balaya Date: Thu, 12 Dec 2024 18:03:18 +0900 Subject: [PATCH 2/2] docs: update some actions --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ac7668f..0b7368b 100644 --- a/README.md +++ b/README.md @@ -261,7 +261,7 @@ jobs: uses: docker/setup-buildx-action@v3.7.1 with: driver-opts: | - image=moby/buildkit:v0.17.2 + image=moby/buildkit:v0.18.1 # Login against a Docker registry except on PR # https://github.com/docker/login-action @@ -290,7 +290,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v6.9.0 + uses: docker/build-push-action@v6.10.0 with: context: . push: true @@ -362,7 +362,7 @@ When GitHub code scanning is enabled, the `sarif-file` input can be used to uplo ```yaml - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v6.9.0 + uses: docker/build-push-action@v6.10.0 with: context: . push: true