Skip to content

Commit

Permalink
updating the pkg versions of github actions (#1566)
Browse files Browse the repository at this point in the history
  • Loading branch information
pushyamig committed Apr 24, 2024
1 parent 456a1f5 commit 0e1503e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Extract branch name
id: extract_branch
Expand All @@ -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 }}
Expand All @@ -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
Expand Down

0 comments on commit 0e1503e

Please sign in to comment.