Skip to content

Commit

Permalink
Merge pull request #6045 from kidder/update_docker_actions
Browse files Browse the repository at this point in the history
Update docker github actions
  • Loading branch information
nilsdeppe authored May 31, 2024
2 parents 2125d30 + 6de357c commit 466ad68
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/BuildDockerContainer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,25 @@ jobs:
uses: actions/checkout@v4
- name: Set up emulation support
if: inputs.build_arm
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# We could also push containers to GitHub instead of DockerHub
# - name: Login to GitHub container registry
# uses: docker/login-action@v2
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
- name: Build dev container
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
context: .
Expand All @@ -61,7 +61,7 @@ jobs:
${{ inputs.build_arm && 'linux/amd64,linux/arm64'
|| 'linux/amd64' }}
- name: Build CI container
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
context: .
Expand Down

0 comments on commit 466ad68

Please sign in to comment.