Skip to content

build(deps): bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.3 to 4.8.6.4 #1995

build(deps): bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.3 to 4.8.6.4

build(deps): bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.3 to 4.8.6.4 #1995

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI
on:
push:
paths-ignore:
- CHANGES
- Dockerfile
- Dockerfile.distroless
- "**.md"
- "**.txt"
- "**.html"
- "**.completions"
- "scribbles/**"
branches: [ master ]
pull_request:
paths-ignore:
- CHANGES
- Dockerfile
- "**.md"
- "**.txt"
- "**.html"
- "**.completions"
- "scribbles/**"
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
java: [ '8', '17', '21', '22', '23-ea' ]
name: Java ${{ matrix.Java }} CI
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up JDK ${{ matrix.Java }}
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Cache Maven repo
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Build with Maven
run: |
mvn -V -B clean install site --file pom.xml -Djdk.console=jdk.jshell -Djavac.target=`echo "${{ matrix.java }}" | sed -e "s/-ea//g"` \
&& cp lambda/target/jmurmel.jar . \
&& cp samples.murmel-mlib/mlib.lisp .
- name: Upload Jar, mlib, docs
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: jmurmel-temurin-${{ matrix.java }}
path: |
jmurmel.jar
mlib.lisp
murmel-langref.md
mlib.md
murmel-langref.html
mlib.html
LICENSE
- name: Create W64 launcher
if: ${{ matrix.java == '8' }}
run: |
mvn -V -B package -pl scripts -Dlaunch4j.skip=false \
&& cp scripts/target/jmurmel.exe . \
&& cp samples.murmel-mlib/mlib.lisp .
- name: Upload launch4j exe, mlib, docs
if: ${{ matrix.java == '8' }}
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: jmurmel-w64-slim
path: |
jmurmel.exe
mlib.lisp
murmel-langref.md
mlib.md
murmel-langref.html
mlib.html
LICENSE
legal/launch4j/*