Bump versions for actions

This commit is contained in:
Antony Messerli 2023-10-08 13:54:01 -05:00
parent e8fa937733
commit da087b9c69

View File

@ -25,19 +25,19 @@ jobs:
echo "WEBAPP_RELEASE=${WEBAPP_RELEASE}" >> $GITHUB_ENV echo "WEBAPP_RELEASE=${WEBAPP_RELEASE}" >> $GITHUB_ENV
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v3
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v2 uses: docker/setup-qemu-action@v3
- name: Login to the Docker Container Registry - name: Login to the Docker Container Registry
uses: docker/login-action@v2 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKERHUB_USER }} username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to the GitHub Container Registry - name: Login to the GitHub Container Registry
uses: docker/login-action@v2 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ secrets.GHCR_USER }} username: ${{ secrets.GHCR_USER }}
@ -98,7 +98,7 @@ jobs:
- name: Docker meta - name: Docker meta
if: steps.version_check.outcome == 'success' && steps.version_check.conclusion == 'success' if: steps.version_check.outcome == 'success' && steps.version_check.conclusion == 'success'
id: meta id: meta
uses: docker/metadata-action@v4 uses: docker/metadata-action@v5
with: with:
images: netbootxyz/netbootxyz images: netbootxyz/netbootxyz
labels: | labels: |
@ -118,7 +118,7 @@ jobs:
- name: Build and push image - name: Build and push image
if: steps.version_check.outcome == 'success' && steps.version_check.conclusion == 'success' if: steps.version_check.outcome == 'success' && steps.version_check.conclusion == 'success'
uses: docker/build-push-action@v4 uses: docker/build-push-action@v5
with: with:
push: true push: true
context: . context: .