Skip to content

Commit

Permalink
ci(deps): update docker actions
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed May 15, 2024
1 parent fca6894 commit e48a856
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/create-and-publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,32 +37,32 @@ jobs:
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2.2.1
uses: docker/setup-buildx-action@v3.3.0
with:
install: true

- name: Log in to the Container registry
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.1.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v5.5.1
with:
images: ${{ env.REGISTRY }}/${{ inputs.image_name_prefix }}${{ matrix.context }}
labels: |
org.opencontainers.image.title=jam-${{ matrix.context }}
org.opencontainers.image.version=${{ inputs.version }}
- name: Build and push Docker image for ${{ matrix.context }}
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.3.0
with:
context: ./${{ matrix.context }}
platforms: linux/amd64,linux/arm64
Expand Down

0 comments on commit e48a856

Please sign in to comment.