Skip to content

Bumped versions: CodeQL CLI 2.14.6, maven 3.9.4, ubuntu 22.04 #169

Bumped versions: CodeQL CLI 2.14.6, maven 3.9.4, ubuntu 22.04

Bumped versions: CodeQL CLI 2.14.6, maven 3.9.4, ubuntu 22.04 #169

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags-ignore:
- v*
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@main # don't get confused by @master - it is the version of the checkout action. You repo will be checked out with ${{ github.ref }}
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B clean verify