File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments