diff --git a/.github/workflows/docker_feature.yaml b/.github/workflows/docker_feature.yaml index e4203ee..4f9efc3 100644 --- a/.github/workflows/docker_feature.yaml +++ b/.github/workflows/docker_feature.yaml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 # https://github.com/actions/checkout - name: Set ENV run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV - - uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images + - uses: docker/build-push-action@v3 # https://github.com/marketplace/actions/build-and-push-docker-images with: username: $GITHUB_ACTOR password: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/docker_latest.yaml b/.github/workflows/docker_latest.yaml index b9bd9f4..540193d 100644 --- a/.github/workflows/docker_latest.yaml +++ b/.github/workflows/docker_latest.yaml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 # https://github.com/actions/checkout - name: Set ENV run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV - - uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images + - uses: docker/build-push-action@v3 # https://github.com/marketplace/actions/build-and-push-docker-images with: username: $GITHUB_ACTOR password: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/git_tag.yaml b/.github/workflows/git_tag.yaml index 5f31624..7e68d5b 100644 --- a/.github/workflows/git_tag.yaml +++ b/.github/workflows/git_tag.yaml @@ -31,7 +31,7 @@ jobs: run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV - uses: actions/checkout@v2 # https://github.com/actions/checkout - name: Push Image to GitHub - uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images + uses: docker/build-push-action@v3 # https://github.com/marketplace/actions/build-and-push-docker-images with: username: $GITHUB_ACTOR password: ${{ secrets.GITHUB_TOKEN }}