Skip to content

Commit

Permalink
Bump actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sheurich authored Nov 14, 2024
1 parent b43ee06 commit 8e96de0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,32 +24,32 @@ jobs:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Build and export to Docker for tests
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
load: true
tags: ${{ env.TEST_TAG }}
- name: Run tests using new image
run: ./test
- name: Log in to the Container registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v4
with:
flavor: latest=true
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ env.PLATFORMS }}
Expand Down

0 comments on commit 8e96de0

Please sign in to comment.