diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 8931bfb..0934534 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -25,62 +25,48 @@ jobs: uses: actions/checkout@v6 - name: Set up QEMU - uses: docker/setup-qemu-action@v3 + uses: docker/setup-qemu-action@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Lower case docker image name id: docker_image - uses: ASzc/change-string-case-action@v6 + uses: ASzc/change-string-case-action@v8 with: string: ${{ github.repository }} - name: Log in to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Docker meta GitHub Container Registry - id: meta - uses: docker/metadata-action@v5 - with: - images: ghcr.io/${{ steps.docker_image.outputs.lowercase }} - tags: | - type=semver,pattern={{version}} - type=ref,event=branch - - - name: Build and push with tags - ${{ steps.meta.outputs.tags }} - uses: docker/build-push-action@v6 - with: - context: . - push: true - platforms: linux/amd64,linux/arm64 - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - - name: Log in to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_PASSWORD }} - - name: Docker hub meta - id: meta_dhub - uses: docker/metadata-action@v5 + - name: Docker meta + id: meta + uses: docker/metadata-action@v6 with: - images: docker.io/bbricardo/${{ steps.docker_image.outputs.lowercase }} + images: | + ghcr.io/${{ steps.docker_image.outputs.lowercase }} + docker.io/${{ secrets.DOCKER_HUB_USERNAME }}/${{ github.event.repository.name }} tags: | type=semver,pattern={{version}} type=ref,event=branch - - name: Build and push with tags - ${{ steps.meta_dhub.outputs.tags }} - uses: docker/build-push-action@v6 + - name: Build and push + uses: docker/build-push-action@v7 with: context: . push: true platforms: linux/amd64,linux/arm64 - tags: ${{ steps.meta_dhub.outputs.tags }} - labels: ${{ steps.meta_dhub.outputs.labels }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max