Skip to content

Commit 51d31db

Browse files
authored
Update run-tests.yml
1 parent 716b98f commit 51d31db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ jobs:
1111
steps:
1212

1313
# Check out the code
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

1616
# Enable caching of Maven dependencies to speed up job execution. See https://github.com/actions/cache
17-
- uses: actions/cache@v1
17+
- uses: actions/cache@v3
1818
with:
1919
path: ~/.m2/repository
2020
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2121
restore-keys: |
2222
${{ runner.os }}-maven-
2323
# Set up Java 1.8 with Maven
2424
- name: Set up JDK 1.8
25-
uses: actions/setup-java@v1
25+
uses: actions/setup-java@v3
2626
with:
2727
java-version: 1.8
2828

2929
# Execute the Maven verify command to compile, package, test, verify
3030
- name: Build with Maven
31-
run: mvn clean install
31+
run: mvn clean install

0 commit comments

Comments
 (0)