Skip to content

Commit

Permalink
Update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ubergeek77 authored Jun 16, 2024
1 parent 9885cf4 commit 20950a9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,17 @@ jobs:
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout Build Files
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checkout Lemmy Frontend Source (${{ env.FE_TAG }})
uses: actions/checkout@v3
uses: actions/checkout@v4
if: env.FE_TAG != ''
with:
repository: ${{ env.LEMMY_ORG }}/${{ env.FE_REPO }}
ref: ${{ env.FE_TAG }}
path: ${{ env.FE_REPO }}
submodules: recursive
- name: Checkout Lemmy Backend Source (${{ env.BE_TAG }})
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event.inputs.be-tag != ''
with:
repository: ${{ env.LEMMY_ORG }}/${{ env.BE_REPO }}
Expand All @@ -107,16 +107,16 @@ jobs:
if: github.event.inputs.be-tag != ''
run: cp -f ./Dockerfile-backend ./${{ env.BE_REPO }}/Dockerfile
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.DST_REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Frontend (${{ env.FE_TAG }}, ${{ matrix.docker-target }})
if: env.FE_TAG != ''
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: ./${{ env.FE_REPO }}
file: ./${{ env.FE_REPO }}/Dockerfile
Expand All @@ -125,7 +125,7 @@ jobs:
tags: ${{ env.DST_REGISTRY }}/${{ github.repository_owner }}/${{ env.FE_REPO }}:${{ env.FE_TAG }}-${{ matrix.target-short }}
- name: Build and push Backend (${{ env.BE_TAG }}, ${{ matrix.docker-target }})
if: github.event.inputs.be-tag != ''
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: ./${{ env.BE_REPO }}
file: ./${{ env.BE_REPO }}/Dockerfile
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.DST_REGISTRY }}
username: ${{ github.repository_owner }}
Expand Down

0 comments on commit 20950a9

Please sign in to comment.