From 0e1503e1d36e3cf8c94d047b117bee68bcdb56a6 Mon Sep 17 00:00:00 2001 From: Pushyami Gundala Date: Wed, 24 Apr 2024 09:09:59 -0400 Subject: [PATCH] updating the pkg versions of github actions (#1566) --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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