Bump commons-io:commons-io from 2.16.1 to 2.17.0 #669
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: CI | |
on: | |
pull_request: | |
types: | |
- opened | |
push: | |
jobs: | |
ubuntuBuild: | |
name: Build deployment on Ubuntu | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Fetch all history for all tags and branches | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: corretto | |
cache: gradle | |
- name: Git describe | |
id: gitDescribe | |
uses: proudust/gh-describe@v1 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build | |
run: ./gradlew :build | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
if: always() | |
with: | |
name: Gradle Tests | |
path: build/test-results/test/*.xml | |
reporter: java-junit | |
fail-on-error: true | |
- name: Build fatJar | |
run: ./gradlew :fatJar | |
- name: Upload fatJar artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: fatJar-${{ steps.gitDescribe.outputs.describe }} | |
path: build/libs/listFix-*-all.jar | |
outputs: | |
version: ${{ steps.gitDescribe.outputs.describe }} | |
windowsBuild: | |
name: Build deployment on Windows | |
runs-on: windows-latest | |
permissions: | |
checks: write | |
steps: | |
- uses: actions/checkout@v3 | |
id: checkout | |
with: | |
fetch-depth: 0 # Fetch all history for all tags and branches | |
- name: Set up JDK 17 | |
id: jdk | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: corretto | |
cache: gradle | |
- name: Setup Gradle | |
id: gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Git describe | |
id: gitDescribe | |
uses: proudust/gh-describe@v1 | |
- name: Build | |
id: gradle_build | |
run: ./gradlew :build | |
- name: Build Windows installers | |
id: gradle_jpackage | |
run: ./gradlew :windowsPortableFolder | |
- name: Upload Windows exe installer | |
id: upload_artifact_installer | |
uses: actions/upload-artifact@v3 | |
with: | |
name: listFix-windows-installer-exe-${{ steps.gitDescribe.outputs.describe }} | |
path: build/jpackage/listFix-*.exe | |
- name: Upload Windows binaries | |
id: upload_artifact_binaries | |
uses: actions/upload-artifact@v3 | |
with: | |
name: listFix-windows-binaries-${{ steps.gitDescribe.outputs.describe }} | |
path: build/distributions/portable | |
commentArtifacts: | |
name: Link build artifacts | |
runs-on: ubuntu-latest | |
needs: [ubuntuBuild, windowsBuild] | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: jwalton/gh-find-current-pr@v1 | |
id: findPr | |
with: | |
# Can be "open", "closed", or "all". Defaults to "open". | |
state: open | |
- name: PR number | |
run: echo '${{ steps.findPr.outputs.number }}' | |
# Only works on action triggered by pull_request | |
- name: "Add Comment to PR" | |
id: pr_comment | |
uses: thollander/actions-comment-pull-request@v2 | |
if: success() && (steps.findPr.outputs.number > 0) | |
with: | |
pr_number: ${{ steps.findPr.outputs.number }} | |
message: | | |
PR #${{ steps.findPr.outputs.number }} building commit ${{github.sha}}: | |
[listFix() **${{ needs.ubuntuBuild.outputs.version }}**](https://github.com/Borewit/listFix/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}#artifacts) | |
in run ${{ github.run_id }}/${{ github.run_attempt }}. | |
mode: recreate | |
create_if_not_exists: true |