From 0b66af0d078dd91730978dcca58c16158112e125 Mon Sep 17 00:00:00 2001 From: Vincent Taglia Date: Sat, 26 Oct 2024 21:24:59 -0500 Subject: [PATCH] fix: small gh actions changes --- .github/workflows/publish-image.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index 92cd18e..473071e 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -20,12 +20,11 @@ jobs: uses: actions/checkout@v4 - name: Docker meta id: docker_meta - uses: crazy-max/ghaction-docker-meta@v1 + uses: docker/metadata-action@v5 with: images: ghcr.io/vincenttaglia/indexer-tools - tag-sha: true - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -34,7 +33,6 @@ jobs: uses: docker/build-push-action@v2 with: context: . - file: Dockerfile push: true tags: ${{steps.docker_meta.outputs.tags}} labels: ${{steps.docker_meta.outputs.labels}}