Skip to content

Bump actions/cache from 3 to 4 (#5) #29

Bump actions/cache from 3 to 4 (#5)

Bump actions/cache from 3 to 4 (#5) #29

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ github.sha }}
- run: ./mvnw clean verify -e -B -V
env:
RESOLVER_GPG_KEY: ${{ secrets.RESOLVER_GPG_KEY }}
RESOLVER_GPG_KEY_PASS: ${{ secrets.RESOLVER_GPG_KEY_PASS }}