From a7ef8bd541a9f482c92f84240156cbb5c2bbbf13 Mon Sep 17 00:00:00 2001 From: billy clark Date: Fri, 28 Oct 2022 14:54:52 -0400 Subject: [PATCH] upgraded docker action --- .github/workflows/build-and-publish-base-php.yml | 2 +- .github/workflows/integrate-and-deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish-base-php.yml b/.github/workflows/build-and-publish-base-php.yml index 7a438f20ef..28839ef51e 100644 --- a/.github/workflows/build-and-publish-base-php.yml +++ b/.github/workflows/build-and-publish-base-php.yml @@ -19,7 +19,7 @@ jobs: run: docker build -t ${{ env.IMAGE }} -f docker/base-php/Dockerfile . - name: Log in to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} diff --git a/.github/workflows/integrate-and-deploy.yml b/.github/workflows/integrate-and-deploy.yml index 3f1ae476b6..2fb7adb507 100644 --- a/.github/workflows/integrate-and-deploy.yml +++ b/.github/workflows/integrate-and-deploy.yml @@ -79,7 +79,7 @@ jobs: # npx playwright test - name: Log in to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.image-repo-username }} password: ${{ secrets.image-repo-password }}