Skip to content

Bump commons-io:commons-io from 2.18.0 to 2.19.0 #167

Bump commons-io:commons-io from 2.18.0 to 2.19.0

Bump commons-io:commons-io from 2.18.0 to 2.19.0 #167

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Testing For PRs
on: [ pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
docker-version: # See https://endoflife.date/docker-engine / https://download.docker.com/linux/static/stable/x86_64/
- "v23.0.6" # 2023-02 --> EOL ?
- "v25.0.5" # 2024-01 --> EOL ?
- "v27.5.1" # 2025-01 --> EOL ?
- "v28.0.1" # 2025-02 --> EOL ?
fail-fast: false
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up JDK
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
with:
java-version: 17
distribution: temurin
- name: Set up Docker
uses: docker/setup-docker-action@b60f85385d03ac8acfca6d9996982511d8620a19 # v4.3.0
with:
version: ${{ matrix.docker-version }}
- name: Build with Gradle
run: ./gradlew assemble check