diff --git a/.github/workflows/price-feeder-release.yml b/.github/workflows/price-feeder-release.yml index 205af52b..beae910d 100644 --- a/.github/workflows/price-feeder-release.yml +++ b/.github/workflows/price-feeder-release.yml @@ -24,7 +24,7 @@ jobs: - name: Set env run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Release - uses: goreleaser/goreleaser-action@v4 + uses: goreleaser/goreleaser-action@v5 with: # Note, we have to pin to v0.179.0 due to newer releases enforcing # correct semantic versioning even when '--skip-validate' is provided. diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index a0ee10b6..7aaef591 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -18,14 +18,14 @@ jobs: uses: actions/checkout@v4 - name: Log in to the Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: USERNAME password: ${{ secrets.REPO_PUSH_PAT }} - name: Build and push Docker image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . push: true