From 6550dc7c453c330698f95c248fab5f668e07a89c 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 ef4b671..82985c1 100644 --- a/README.md +++ b/README.md @@ -245,20 +245,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 }} @@ -268,7 +268,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: | @@ -282,7 +282,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 @@ -352,7 +352,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 83da0ed2a4d2d637c7e3660f6d306d5af0ff3c06 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 82985c1..a90dabb 100644 --- a/README.md +++ b/README.md @@ -253,7 +253,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 @@ -282,7 +282,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 @@ -352,7 +352,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