Bump commons-io:commons-io from 2.16.1 to 2.17.0 #677
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MSSQL Server Windows | |
on: | |
pull_request: | |
concurrency: # cancel on PR pushes | |
# More info: https://stackoverflow.com/a/68422069/253468 | |
group: ${{ github.workflow }}-${{ ( github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release' ) && format('ci-master-{0}', github.sha) || format('ci-master-{0}', github.ref) }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: MS SQL 2019 / ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: 'windows-2022' | |
tag: 'ltsc2022-sql2019' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
- name: Set up JDK for build | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: 'Login to b3p.nl' | |
uses: docker/login-action@v3 | |
with: | |
registry: docker.b3p.nl | |
username: ${{ secrets.DOCKER_B3P_PULL_ACTOR }} | |
password: ${{ secrets.DOCKER_B3P_PULL_TOKEN }} | |
- name: Setup database engine for MS SQL | |
run: .\.build\ci\mssql-start.ps1 -tag ${{ matrix.tag }} | |
- name: Setup test environment for MS SQL | |
run: .\.build\ci\mssql-setup.ps1 | |
- name: Priming build | |
run: mvn --% install -Dmaven.test.skip=true -B -V -e -fae -q -Pmssql | |
- name: Verify ${{ matrix.mssql }} | |
run: mvn --% -e verify -B -Pmssql -T1 -Dtest.onlyITs=true | |
- name: Clean artifacts from repository | |
run: mvn --% clean build-helper:remove-project-artifact | |
- name: Upload codecoverage | |
uses: codecov/codecov-action@v4 |