Skip to content

Commit f2a50b9

Browse files
committed
Update gh actions
1 parent d0cc91d commit f2a50b9

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ jobs:
5858
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5959
steps:
6060
- name: Checkout repository
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v6
6262

6363
# Initializes the CodeQL tools for scanning.
6464
- name: Initialize CodeQL
65-
uses: github/codeql-action/init@v3
65+
uses: github/codeql-action/init@v4
6666
with:
6767
languages: ${{ matrix.language }}
6868
build-mode: ${{ matrix.build-mode }}
@@ -90,6 +90,6 @@ jobs:
9090
exit 1
9191
9292
- name: Perform CodeQL Analysis
93-
uses: github/codeql-action/analyze@v3
93+
uses: github/codeql-action/analyze@v4
9494
with:
9595
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
- name: Dependency Review
14-
uses: actions/dependency-review-action@v3
14+
uses: actions/dependency-review-action@v4
1515
with:
1616
fail-on-severity: high

.github/workflows/maven-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
matrix:
1313
java: [ 11, 17 ]
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
name: git checkout
1717
- name: Set up Java
18-
uses: actions/setup-java@v4
18+
uses: actions/setup-java@v5
1919
with:
2020
java-version: ${{ matrix.java }}
2121
distribution: temurin

.github/workflows/maven-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
java: [ 11, 17 ]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
name: git checkout
1919
with:
2020
ref: master
2121
- name: Set up Java
22-
uses: actions/setup-java@v4
22+
uses: actions/setup-java@v5
2323
with:
2424
java-version: ${{ matrix.java }}
2525
distribution: temurin

0 commit comments

Comments
 (0)