Skip to content

Update actions/checkout digest to a5ac7e5 #159

Update actions/checkout digest to a5ac7e5

Update actions/checkout digest to a5ac7e5 #159

Workflow file for this run

name: Maven CI
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: true
max-parallel: 3
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Configuración JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: zulu
- name: Compilar con Maven
run: mvn -B package --file pom.xml
- name: Subir JARs generados
uses: actions/upload-artifact@v4
with:
name: JARs plugins (${{ matrix.os }})
path: jar