File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 3030 artifact_id : ${{ steps.get_artifact_id.outputs.artifact_id }}
3131 steps :
3232 - name : Checkout base branch
33- uses : actions/checkout@v5
33+ uses : actions/checkout@v6
3434 with :
3535 fetch-depth : 0
3636 ref : ${{ github.event.inputs.base_ref || 'main' }}
@@ -141,14 +141,14 @@ jobs:
141141 steps :
142142 - name : Checkout the tag (real release)
143143 if : ${{ github.event.inputs.dry_run != 'true' }}
144- uses : actions/checkout@v5
144+ uses : actions/checkout@v6
145145 with :
146146 fetch-depth : 0
147147 ref : ${{ needs.prepare-release.outputs.tag_name }}
148148
149149 - name : Checkout the base branch (dry run)
150150 if : ${{ github.event.inputs.dry_run == 'true' }}
151- uses : actions/checkout@v5
151+ uses : actions/checkout@v6
152152 with :
153153 fetch-depth : 0
154154 ref : ${{ github.event.inputs.base_ref || 'main' }}
@@ -190,7 +190,7 @@ jobs:
190190
191191 - name : In dry run - upload build outputs as workflow artifacts
192192 if : ${{ github.event.inputs.dry_run == 'true' }}
193- uses : actions/upload-artifact@v5
193+ uses : actions/upload-artifact@v6
194194 with :
195195 name : dry-run-${{ needs.prepare-release.outputs.tag_name }}
196196 path : |
Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ jobs:
2626 security-events : read # read Dependabot vulnerability alerts
2727 steps :
2828 # Checks out the repository under $GITHUB_WORKSPACE
29- - uses : actions/checkout@v5
29+ - uses : actions/checkout@v6
3030
3131 # Runs the Renovate GitHub Action
3232 - name : Renovate
33- uses : renovatebot/github-action@v43.0.18
33+ uses : renovatebot/github-action@v44.1.0
3434 with :
3535 token : ${{ secrets.GITHUB_TOKEN }} # required to create PRs/issues
3636 configurationFile : .github/renovate.json
Original file line number Diff line number Diff line change 5353 --out ./reports
5454 - name : Upload Test results
5555 if : ${{ always() }}
56- uses : actions/upload-artifact@v4
56+ uses : actions/upload-artifact@v6
5757 with :
5858 name : Depcheck report
5959 path : ${{github.workspace}}/reports
Original file line number Diff line number Diff line change 5959 scan :
6060 runs-on : ubuntu-latest
6161 steps :
62- - uses : actions/checkout@v5
62+ - uses : actions/checkout@v6
6363 - name : Set up JDK 21
6464 uses : actions/setup-java@v5
6565 with :
8282 if [ $LINES_FOUND -gt 1 ]; then echo $LICENSE_REPORT ; exit -1; fi
8383 working-directory : .
8484 - name : Upload license XML reports
85- uses : actions/upload-artifact@v4
85+ uses : actions/upload-artifact@v6
8686 with :
8787 name : license-xml-report
8888 path : ' ./**/${{ env.REPORT_PATH }}'
You can’t perform that action at this time.
0 commit comments