Skip to content

Commit b0b5d1b

Browse files
committed
Updates
1 parent c0480a2 commit b0b5d1b

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# jobs:
1313
# build:
1414
# name: Verify
15-
# uses: maveniverse/parent/.github/workflows/ci.yml@release-29
15+
# uses: maveniverse/parent/.github/workflows/ci.yml@release-42
1616
#
1717
# Secrets: none
1818
#
@@ -82,14 +82,17 @@ jobs:
8282
runs-on: ubuntu-latest
8383
if: inputs.maven-single-run
8484
steps:
85-
- uses: actions/checkout@v5
85+
- name: Checkout
86+
uses: actions/checkout@v5
8687
with:
8788
persist-credentials: false
88-
- uses: actions/setup-java@v5
89+
- name: Setup Java
90+
uses: actions/setup-java@v5
8991
with:
9092
java-version: '21'
9193
distribution: 'temurin'
92-
- uses: actions/cache@v4
94+
- name: Cache
95+
uses: actions/cache@v4
9396
with:
9497
path: ~/.m2/repository
9598
key: mvn-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
@@ -115,17 +118,21 @@ jobs:
115118
- jdk: 11
116119
maven: 4.0.0-rc-4
117120
steps:
118-
- uses: actions/checkout@v5
121+
- name: Checkout
122+
uses: actions/checkout@v5
119123
with:
120124
persist-credentials: false
121-
- uses: actions/setup-java@v5
125+
- name: Setup Java
126+
uses: actions/setup-java@v5
122127
with:
123128
java-version: ${{ matrix.jdk }}
124129
distribution: 'temurin'
125-
- uses: actions/cache@v4
130+
- name: Cache
131+
uses: actions/cache@v4
126132
with:
127133
path: ~/.m2/repository
128134
key: mvn-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
135+
fail-on-cache-miss: true
129136
- run: ./mvnw -N -Dmaven=${{ matrix.maven }} wrapper:wrapper
130137
- run: ${{ inputs.maven-test }}
131138

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717
wrapperVersion=3.3.2
1818
distributionType=only-script
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip

0 commit comments

Comments
 (0)