Skip to content

Commit

Permalink
Update GitHub Action versions
Browse files Browse the repository at this point in the history
Fixes Node.js 16 deprecation warnings
  • Loading branch information
andreas-venturini committed Apr 23, 2024
1 parent 311dc99 commit cc8cc79
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ jobs:

steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Docker Metadata action
id: metadata
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/denkungsart/ci-ruby
tags: |
type=ref,event=branch
- 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 and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64,linux/arm64
Expand Down

0 comments on commit cc8cc79

Please sign in to comment.