Skip to content

Commit 5999ee2

Browse files
chore: Update GitHub Actions to newer versions.
1 parent 97a05fd commit 5999ee2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
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: |

.github/workflows/renovate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/scan-cve.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
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

.github/workflows/scan-license.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
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:
@@ -82,7 +82,7 @@ jobs:
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 }}'

0 commit comments

Comments
 (0)