Skip to content

Bump actions/setup-java from 5.7.0 to 6.0.0 #71

Bump actions/setup-java from 5.7.0 to 6.0.0

Bump actions/setup-java from 5.7.0 to 6.0.0 #71

Workflow file for this run

name: Test
on: [ push, pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
actions: read
checks: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up JDK 17
uses: actions/setup-java@dd06d9cba3e5552c54d9f8ea23572deb30010f7c # v6.0.0
with:
distribution: 'corretto'
java-version: 17
cache: 'gradle'
- name: Build
run: ./gradlew uberJar check
- name: Upload JAR
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: seedvault-chunker-${{ github.sha }}-jar
path: |
app/build/libs/seedvault-chunker.jar
- name: Publish Test Report
uses: mikepenz/action-junit-report@d9f48fc87bc235f7e214acf696ca5abc0a986f16 # v6.4.2
if: success() || failure()
with:
report_paths: '**/build/test-results/**/TEST-*.xml'