From d1792c79008f34a49278e8130f6c4b249dd61c07 Mon Sep 17 00:00:00 2001 From: Andrew Fischer Date: Mon, 27 Feb 2023 13:29:11 -0500 Subject: [PATCH] Version fixes for release workflow --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bce96f28..76d3c56f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v3 - name: Log in to Docker Hub - uses: docker/login-action@2 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -24,7 +24,7 @@ jobs: images: nytimes/library - name: Build and push Docker image - uses: docker/build-push-action@4 + uses: docker/build-push-action@v4 with: context: . push: ${{ github.event_name != 'pull_request' }} # just to be safe