Skip to content

Commit

Permalink
action updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mkroli committed Mar 12, 2024
1 parent 52d3da2 commit 7f2bd73
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 @@ -67,7 +67,7 @@ jobs:
name: ${{ github.event.repository.name }}_${{ matrix.suffix }}
path: ${{ github.event.repository.name }}_${{ matrix.suffix }}
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ github.event.repository.name }}_${{ matrix.suffix }}
Expand All @@ -93,17 +93,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup qemu
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: GitHub Container Registry Login
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Retrieve Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}_${{ matrix.suffix }}
path: build/
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: GitHub Container Registry Login
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down

0 comments on commit 7f2bd73

Please sign in to comment.