diff --git a/.github/workflows/publish-images.yml b/.github/workflows/publish-images.yml index 74ac915..b17c510 100644 --- a/.github/workflows/publish-images.yml +++ b/.github/workflows/publish-images.yml @@ -12,11 +12,11 @@ jobs: packages: write steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Generate container image metadata id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: | ghcr.io/bozemanpass/static-content-base @@ -26,14 +26,14 @@ jobs: type=raw,value=latest,enable={{is_default_branch}} - name: Log in to Container Image Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v7 with: context: . file: ./Containerfile