Skip to content

Commit 006ffb1

Browse files
authored
Merge pull request #12567 from jetty/jetty-12.0.x-codeql-upgrade
Issue #12446 upgrade some github actions
2 parents f52854b + e637442 commit 006ffb1

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,3 +246,7 @@ updates:
246246
- dependency-name: "org.apache.avro:*"
247247
versions: [ ">=1.12" ]
248248

249+
- package-ecosystem: "github-actions"
250+
directory: "/"
251+
schedule:
252+
interval: "weekly"

.github/workflows/codeql-analysis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131

3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
# Install and setup JDK 11
3737
- name: Setup JDK 11
38-
uses: actions/setup-java@v3
38+
uses: actions/setup-java@v4
3939
if: ${{
4040
startsWith(github.ref, 'refs/heads/jetty-10.') ||
4141
startsWith(github.ref, 'refs/heads/jetty-11.') ||
@@ -49,7 +49,7 @@ jobs:
4949

5050
# Install and setup JDK 17
5151
- name: Setup JDK 17
52-
uses: actions/setup-java@v3
52+
uses: actions/setup-java@v4
5353
if: ${{
5454
startsWith(github.ref, 'refs/heads/jetty-12.') ||
5555
startsWith(github.base_ref, 'jetty-12.')
@@ -61,7 +61,7 @@ jobs:
6161

6262
# Initializes the CodeQL tools for scanning.
6363
- name: Initialize CodeQL
64-
uses: github/codeql-action/init@v2
64+
uses: github/codeql-action/init@v3
6565
with:
6666
languages: ${{ matrix.languages }}
6767
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: Set up Maven
7676
run:
77-
mvn -e -B -V org.apache.maven.plugins:maven-wrapper-plugin:3.1.0:wrapper "-Dmaven=3.9.6"
77+
mvn -e -B -V org.apache.maven.plugins:maven-wrapper-plugin:3.1.0:wrapper "-Dmaven=3.9.9"
7878

7979
- name: Clean install dependencies and build
8080
env:
@@ -94,4 +94,4 @@ jobs:
9494
# ./location_of_script_within_repo/buildscript.sh
9595

9696
- name: Perform CodeQL Analysis
97-
uses: github/codeql-action/analyze@v2
97+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)