Skip to content

Commit

Permalink
Update workflow actions to support Node v20 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertjndw authored Jan 26, 2024
1 parent 0208edc commit 813bb05
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Compute Tag
uses: actions/github-script@v6
uses: actions/github-script@v7
id: compute-tag
with:
result-encoding: string
Expand All @@ -46,28 +46,28 @@ jobs:
return "latest";
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Log in to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

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

- name: Install Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build and push Docker Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: ${{ matrix.dockerfile }}
platforms: linux/amd64,linux/arm64
Expand Down

0 comments on commit 813bb05

Please sign in to comment.