Skip to content

build(deps): Bump commons-codec:commons-codec from 1.22.0 to 1.22.1 #3279

build(deps): Bump commons-codec:commons-codec from 1.22.0 to 1.22.1

build(deps): Bump commons-codec:commons-codec from 1.22.0 to 1.22.1 #3279

Workflow file for this run

name: Java Build
permissions: {}
on:
push:
branches: ["main"]
pull_request:
branches: ["main", "release-*"]
merge_group:
schedule:
# daily at 1:30 UTC
- cron: '30 1 * * *'
concurrency:
group: java-build-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [ ubuntu-22.04 ]
java: [ "17", "21" ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build JAR Artifacts and verify coverage
run: mvn --batch-mode --no-transfer-progress --errors --update-snapshots clean package -Drevision=$(git describe --tags --always)
- name: Upload Artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: maven-build-java-${{ matrix.java }}
path: target/
if-no-files-found: error
retention-days: 5