File tree Expand file tree Collapse file tree 4 files changed +17
-7
lines changed
Expand file tree Collapse file tree 4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313
1414 steps :
15- - uses : actions/checkout@v2
15+ - uses : actions/checkout@v4
1616 - name : Set up Java
17- uses : actions/setup-java@v3
17+ uses : actions/setup-java@v4
1818 with :
1919 java-version : ' 8'
2020 distribution : ' zulu'
Original file line number Diff line number Diff line change @@ -10,19 +10,23 @@ jobs:
1010 runs-on : ubuntu-latest
1111
1212 steps :
13- - uses : actions/checkout@v2
13+ - uses : actions/checkout@v4
1414 - name : Set up Java
15- uses : actions/setup-java@v3
15+ uses : actions/setup-java@v4
1616 with :
1717 java-version : ' 8'
1818 distribution : ' zulu'
1919
20+ # Needed if the cache is out of whack and needs to be totally refreshed
21+ # - name: Clear Maven cache
22+ # run: rm -rf ~/.m2/repository/*
23+
2024 - name : Cache Maven packages
2125 uses : actions/cache@v3
2226 with :
2327 path : ~/.m2/repository
2428 key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
25- restore-keys : ${{ runner.os }}-m2
29+ restore-keys : ${{ runner.os }}-m2
2630
2731 - name : Set up Maven settings
2832 uses : s4u/maven-settings-action@v2
3236
3337 - name : Set up CI environment
3438 run : .github/setup.sh
39+
40+ # Needed if there's some stale artefacts or config blocking the build'
41+ # - name: Build with Maven
42+ # run: mvn clean install -U
3543
3644 - name : Execute the build
3745 run : .github/build.sh
Original file line number Diff line number Diff line change 127127 <dependency >
128128 <groupId >org.bonej</groupId >
129129 <artifactId >bonej-plus</artifactId >
130- <version >0.0.8 </version >
130+ <version >0.0.9 </version >
131131 </dependency >
132132
133133 <!-- ImageJ dependencies -->
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.scijava</groupId >
77 <artifactId >pom-scijava</artifactId >
8- <version >41 .0.0</version >
8+ <version >42 .0.0</version >
99 <relativePath />
1010 </parent >
1111
129129 <repository >
130130 <id >github</id >
131131 <url >https://maven.pkg.github.com/bonej-org/bonej-plus</url >
132+ <releases ><enabled >false</enabled ></releases >
133+ <snapshots ><enabled >true</enabled ></snapshots >
132134 </repository >
133135 </repositories >
134136</project >
You can’t perform that action at this time.
0 commit comments