File tree 3 files changed +45
-5
lines changed
3 files changed +45
-5
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ jobs:
23
23
24
24
steps :
25
25
- name : Checkout repository
26
- uses : actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
26
+ uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
27
27
28
28
# Initializes the CodeQL tools for scanning.
29
29
- name : Initialize CodeQL
30
- uses : github/codeql-action/init@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
30
+ uses : github/codeql-action/init@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
31
31
with :
32
32
languages : ${{ matrix.language }}
33
33
34
34
- name : Autobuild
35
- uses : github/codeql-action/autobuild@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
35
+ uses : github/codeql-action/autobuild@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
36
36
37
37
- name : Perform CodeQL Analysis
38
- uses : github/codeql-action/analyze@0116bc2df50751f9724a2e35ef1f24d22f90e4e1 # v2.22.3
38
+ uses : github/codeql-action/analyze@49abf0ba24d0b7953cb586944e918a0b92074c80 # v2.22.4
Original file line number Diff line number Diff line change 30
30
env :
31
31
JAVA_OPTS : " -XX:+TieredCompilation -XX:TieredStopAtLevel=1"
32
32
steps :
33
- - uses : actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
33
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
34
34
- name : Set up JDK
35
35
uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
36
36
with :
Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments