Skip to content

Commit 71c6218

Browse files
committed
Merge branch '2.16'
2 parents ff1a5ab + 8dc2371 commit 71c6218

File tree

3 files changed

+45
-5
lines changed

3 files changed

+45
-5
lines changed

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
26+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2727

2828
# Initializes the CodeQL tools for scanning.
2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
30+
uses: github/codeql-action/init@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
3131
with:
3232
languages: ${{ matrix.language }}
3333

3434
- name: Autobuild
35-
uses: github/codeql-action/autobuild@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
35+
uses: github/codeql-action/autobuild@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
3636

3737
- name: Perform CodeQL Analysis
38-
uses: github/codeql-action/analyze@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
38+
uses: github/codeql-action/analyze@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
3232
steps:
33-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
33+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3434
- name: Set up JDK
3535
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
3636
with:

.github/workflows/win.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Build and Test Snapshot (Windows)
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- "3.0"
7+
- "2.16"
8+
paths-ignore:
9+
- "README.md"
10+
- "release-notes/*"
11+
pull_request:
12+
branches:
13+
- master
14+
- "3.0"
15+
- "2.16"
16+
paths-ignore:
17+
- "README.md"
18+
- "release-notes/*"
19+
permissions:
20+
contents: read
21+
22+
jobs:
23+
build:
24+
runs-on: 'windows-2022'
25+
strategy:
26+
fail-fast: false
27+
matrix:
28+
java_version: ['8']
29+
env:
30+
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
31+
steps:
32+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
33+
- name: Set up JDK
34+
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
35+
with:
36+
distribution: 'temurin'
37+
java-version: ${{ matrix.java_version }}
38+
cache: 'maven'
39+
- name: Build
40+
run: cmd /c "mvnw.cmd -B -ff -ntp clean verify"

0 commit comments

Comments
 (0)