Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
ci: bump all actions which use node20
Browse files Browse the repository at this point in the history
  • Loading branch information
islishude committed Sep 12, 2023
1 parent c95f0bc commit a16956b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,29 @@ jobs:
id-token: write
steps:
- name: checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install cosign
if: ${{ github.ref_type == 'tag' }}
uses: sigstore/cosign-installer@v3

- name: Login to Github Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Docker meta
id: docker-meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Build with tag and push
id: docker-build-push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: ${{ github.ref_type == 'tag' }}
platforms: linux/amd64,linux/arm64
Expand Down

0 comments on commit a16956b

Please sign in to comment.