diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dee28a2b..91817133 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Extract branch name id: extract_branch @@ -37,7 +37,7 @@ jobs: docker build . --tag ghcr.io/${{ env.REPO_URL }}:${BRANCH_NAME} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -53,11 +53,11 @@ jobs: needs: build # This ensures the build job finishes successfully before starting this job runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Draft Release id: create_release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: draft: true prerelease: true