From 8760b12e131393eea643e79a54f5df3903c82b89 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Fri, 8 Dec 2023 07:30:56 +0900 Subject: [PATCH] Update asd-action --- .github/workflows/release-asd-action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-asd-action.yml b/.github/workflows/release-asd-action.yml index 266bed7f..e022832a 100644 --- a/.github/workflows/release-asd-action.yml +++ b/.github/workflows/release-asd-action.yml @@ -15,14 +15,14 @@ jobs: uses: actions/checkout@v2 - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} - password: ${{ secrets.CR_PAT }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Push to GitHub Container Registry - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: push: true tags: ghcr.io/${{ github.repository_owner }}/${{ env.PACKAGE_NAME }}:${{ env.VERSION_NAME }}