Skip to content

Commit 0366724

Browse files
committed
github actions version update
1 parent 647172e commit 0366724

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

.github/workflows/BuildCheck.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Build Check
33
on:
44
push:
55
branches:
6-
- 'main'
7-
- 'feature/*'
8-
- 'patch/*'
6+
- "main"
7+
- "feature/*"
8+
- "patch/*"
99

1010
workflow_dispatch:
1111

@@ -14,17 +14,16 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
env:
17-
# The vars below must be added to the Github Repository settings variables for Actions
17+
# The vars below must be added to the Github Repository settings variables for Actions
1818
JEOMETRY_REPO: ${{vars.JEOMETRY_REPO}}
1919

2020
steps:
21-
2221
- name: Initialize Environment
2322
run: |
2423
if [ -z "${JEOMETRY_REPO}" ]; then
2524
echo "JEOMETRY_REPO=jeometry-org/jeometry" >> $GITHUB_ENV
2625
fi
27-
26+
2827
REF="$GITHUB_REF"
2928
if [[ "$REF" =~ ^refs/heads/.* ]]; then
3029
REF="${REF/refs\/heads\//}"
@@ -40,26 +39,26 @@ jobs:
4039
echo "OTHER_REF=${OTHER_REF}" >> $GITHUB_ENV
4140
4241
- name: Checkout jeometry
43-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4443
with:
4544
ref: ${{env.OTHER_REF}}
4645
repository: ${{env.JEOMETRY_REPO}}
4746
path: jeometry
4847
#token: ${{secrets.PUSH_TOKEN}}
4948

5049
- name: Checkout revolsys
51-
uses: actions/checkout@v4
50+
uses: actions/checkout@v6
5251
with:
5352
ref: ${{env.REF}}
5453
repository: ${{github.repository}}
5554
path: revolsys
5655

5756
- name: Set up JDK 17
58-
uses: actions/setup-java@v4
57+
uses: actions/setup-java@v5
5958
with:
60-
java-version: '17'
61-
distribution: 'microsoft'
62-
cache: 'maven'
59+
java-version: "17"
60+
distribution: "microsoft"
61+
cache: "maven"
6362

6463
- name: Get Project Version
6564
working-directory: ./revolsys

0 commit comments

Comments
 (0)