diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6e8cd1..f50a544 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up the Java environment for the next steps - name: Setup Java @@ -63,7 +63,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Set up the Java environment for the next steps - name: Setup Java @@ -117,7 +117,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis @@ -144,7 +144,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Remove old release drafts by using the curl request for the available releases with a draft flag - name: Remove Old Release Drafts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f2fe34..c0e96f2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: # Check out the current repository - name: Fetch Sources - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.release.tag_name }}