Skip to content

Commit 7b426fc

Browse files
committed
⬆️ update github actions
1 parent 188064f commit 7b426fc

7 files changed

Lines changed: 11 additions & 15 deletions

File tree

.github/workflows/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- "temurin"
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
submodules: recursive
2424

.github/workflows/_codeql.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,14 @@ jobs:
2626

2727
strategy:
2828
fail-fast: false
29-
matrix:
30-
language: [ 'java' ]
31-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
32-
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
3329

3430
steps:
3531
- name: Checkout repository
36-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3733

3834
# Initializes the CodeQL tools for scanning.
3935
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@v3
36+
uses: github/codeql-action/init@v4
4137
with:
4238
languages: ${{ matrix.language }}
4339
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -51,7 +47,7 @@ jobs:
5147
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5248
# If this step fails, then you should remove it and run the build manually (see below)
5349
- name: Autobuild
54-
uses: github/codeql-action/autobuild@v3
50+
uses: github/codeql-action/autobuild@v4
5551

5652
# ℹ️ Command-line programs to run using the OS shell.
5753
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -64,6 +60,6 @@ jobs:
6460
# ./location_of_script_within_repo/buildscript.sh
6561

6662
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v3
63+
uses: github/codeql-action/analyze@v4
6864
with:
69-
category: "/language:${{matrix.language}}"
65+
category: "/language:java"

.github/workflows/_publish-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
submodules: recursive
1414

.github/workflows/_publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Publish Documentation
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
submodules: recursive
1515

.github/workflows/_static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Check Code Style
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
submodules: recursive
1414

.github/workflows/_test-code-samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- "temurin"
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
with:
3434
submodules: recursive
3535
- name: Set up JDK ${{ matrix.java-version }}

.github/workflows/_test-integrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- "temurin"
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
submodules: recursive
3636

0 commit comments

Comments
 (0)