Skip to content

Bump commons-codec:commons-codec from 1.17.2 to 1.18.0 #678

Bump commons-codec:commons-codec from 1.17.2 to 1.18.0

Bump commons-codec:commons-codec from 1.17.2 to 1.18.0 #678

Workflow file for this run

name: Java Tests
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
java: [11, 17, 18]
fail-fast: false
name: Test on JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: adopt
- name: Test with Maven
run: mvn -B --file pom.xml test
- name: Verify with Maven
run: mvn -B -f pom.xml verify