Skip to content

Commit 24e52d2

Browse files
committed
Bump actions/cache from 3.0.2 to 3.0.3
1 parent 63fcfa8 commit 24e52d2

2 files changed

Lines changed: 454 additions & 454 deletions

File tree

.github/workflows/maven.yml

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
# Licensed to the Apache Software Foundation (ASF) under one or more
2-
# contributor license agreements. See the NOTICE file distributed with
3-
# this work for additional information regarding copyright ownership.
4-
# The ASF licenses this file to You under the Apache License, Version 2.0
5-
# (the "License"); you may not use this file except in compliance with
6-
# the License. You may obtain a copy of the License at
7-
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
10-
# Unless required by applicable law or agreed to in writing, software
11-
# distributed under the License is distributed on an "AS IS" BASIS,
12-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
# See the License for the specific language governing permissions and
14-
# limitations under the License.
15-
16-
name: Java CI
17-
18-
on: [push, pull_request]
19-
20-
jobs:
21-
build:
22-
23-
runs-on: ubuntu-latest
24-
continue-on-error: ${{ matrix.experimental }}
25-
strategy:
26-
matrix:
27-
java: [ 8, 11, 17 ]
28-
experimental: [false]
29-
# include:
30-
# - java: 18-ea
31-
# experimental: true
32-
33-
steps:
34-
- uses: actions/checkout@v3
35-
- uses: actions/cache@v3.0.2
36-
with:
37-
path: ~/.m2/repository
38-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
39-
restore-keys: |
40-
${{ runner.os }}-maven-
41-
- name: Set up JDK ${{ matrix.java }}
42-
uses: actions/setup-java@v3
43-
with:
44-
distribution: 'temurin'
45-
java-version: ${{ matrix.java }}
46-
- name: Build with Maven
47-
run: mvn -V --file pom.xml --no-transfer-progress
1+
# Licensed to the Apache Software Foundation (ASF) under one or more
2+
# contributor license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright ownership.
4+
# The ASF licenses this file to You under the Apache License, Version 2.0
5+
# (the "License"); you may not use this file except in compliance with
6+
# the License. You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
16+
name: Java CI
17+
18+
on: [push, pull_request]
19+
20+
jobs:
21+
build:
22+
23+
runs-on: ubuntu-latest
24+
continue-on-error: ${{ matrix.experimental }}
25+
strategy:
26+
matrix:
27+
java: [ 8, 11, 17 ]
28+
experimental: [false]
29+
# include:
30+
# - java: 18-ea
31+
# experimental: true
32+
33+
steps:
34+
- uses: actions/checkout@v3
35+
- uses: actions/cache@v3.0.3
36+
with:
37+
path: ~/.m2/repository
38+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
39+
restore-keys: |
40+
${{ runner.os }}-maven-
41+
- name: Set up JDK ${{ matrix.java }}
42+
uses: actions/setup-java@v3
43+
with:
44+
distribution: 'temurin'
45+
java-version: ${{ matrix.java }}
46+
- name: Build with Maven
47+
run: mvn -V --file pom.xml --no-transfer-progress

0 commit comments

Comments
 (0)