Skip to content

Commit

Permalink
Merge pull request #5 from awharn-docker/update-node
Browse files Browse the repository at this point in the history
Update node
  • Loading branch information
awharn authored Feb 2, 2024
2 parents 466198f + 3926530 commit 4c3d372
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,24 @@ jobs:
node: [16, 18, 20]
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to Dockerhub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: awharn
password: ${{ secrets.DOCKERHUB_TOKEN }}

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

- name: Build & Push
id: build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64
Expand All @@ -59,25 +59,25 @@ jobs:
node: [16, 18, 20]
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
id: builder

- name: Login to Dockerhub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: awharn
password: ${{ secrets.DOCKERHUB_TOKEN }}

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

- name: Build & Push
id: build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/arm64
Expand Down

0 comments on commit 4c3d372

Please sign in to comment.