Skip to content

Commit

Permalink
Update docker.yml
Browse files Browse the repository at this point in the history
upgrade versions
  • Loading branch information
toniher authored Jun 9, 2024
1 parent 8ea5def commit 33fc172
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -58,7 +58,7 @@ jobs:
echo "DOCKER_IMAGE_BRANCH=${{ matrix.branch }}" >> $GITHUB_ENV
if: ${{ matrix.branch != 'main' }}
- name: Push Docker
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
file: ./${{ matrix.folder }}/Dockerfile
context: ./${{ matrix.folder }}
Expand Down

0 comments on commit 33fc172

Please sign in to comment.