Skip to content

Commit

Permalink
feature: update github actions to newest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperbeisner committed Aug 12, 2024
1 parent a39bb37 commit a970b2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: "Set Docker Meta"
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: "ghcr.io/jesperbeisner/fwstats"
flavor: latest=true
tags: type=semver,pattern={{version}}

- name: "Login To Image Repository"
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: "ghcr.io"
username: ${{ github.actor }}
password: ${{ secrets.FWSTATS_GHCR_TOKEN }}

- name: "Build And Push"
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: .
file: ".docker/prod/Dockerfile"
Expand Down

0 comments on commit a970b2f

Please sign in to comment.