diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c1023d61..fe051199 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,11 +59,8 @@ jobs: with: fetch-tags: true - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -118,11 +115,8 @@ jobs: with: fetch-tags: true - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -158,8 +152,11 @@ jobs: TERRATEAM_ENVIRONMENT: ${{ github.event.inputs.environment || 'production' }} steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }}