Update gradle/actions digest to 473878a #5699
Workflow file for this run
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: | |
push: | |
branches: | |
- main | |
- 'releases/**' | |
pull_request: | |
branches: | |
- '*' | |
permissions: read-all | |
env: | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
jobs: | |
Linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Install GraalVM | |
uses: graalvm/setup-graalvm@3aaf71e276c9159bbdfbcdab8abc50c95f41a2c8 # v1 | |
with: | |
distribution: graalvm-community | |
version: 'latest' | |
java-version: '21' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build | |
uses: ./.github/actions/main-build | |
with: | |
encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
arguments: | | |
-Ptesting.enableJaCoCo \ | |
:platform-tooling-support-tests:test \ | |
build \ | |
jacocoRootReport \ | |
--configuration-cache | |
- name: Upload to Codecov.io | |
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
Windows: | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Build | |
uses: ./.github/actions/main-build | |
with: | |
encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
macOS: | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Build | |
uses: ./.github/actions/main-build | |
with: | |
encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
publish_artifacts: | |
name: Publish Snapshot Artifacts | |
needs: Linux | |
runs-on: ubuntu-latest | |
permissions: | |
attestations: write # required for build provenance attestation | |
id-token: write # required for build provenance attestation | |
if: github.event_name == 'push' && github.repository == 'junit-team/junit5' && (startsWith(github.ref, 'refs/heads/releases/') || github.ref == 'refs/heads/main') | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Publish | |
uses: ./.github/actions/run-gradle | |
env: | |
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }} | |
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }} | |
with: | |
encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
arguments: | | |
publish -x check \ | |
prepareGitHubAttestation | |
- name: Generate build provenance attestations | |
uses: actions/attest-build-provenance@ef244123eb79f2f7a7e75d99086184180e6d0018 # v1.4.4 | |
with: | |
subject-path: documentation/build/attestation/*.jar | |
documentation: | |
name: Build Documentation | |
concurrency: | |
group: github-pages-${{ github.ref }} | |
cancel-in-progress: true | |
needs: Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Install Graphviz | |
run: | | |
sudo apt-get update | |
sudo apt-get install graphviz | |
- name: Build Documentation | |
uses: ./.github/actions/run-gradle | |
with: | |
encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
arguments: | | |
prepareDocsForUploadToGhPages \ | |
-Dscan.tag.Documentation | |
- name: Upload Documentation | |
if: github.event_name == 'push' && github.repository == 'junit-team/junit5' && github.ref == 'refs/heads/main' | |
uses: ./.github/actions/run-gradle | |
with: | |
encryptionKey: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
arguments: | | |
gitPublishPush \ | |
-Dscan.tag.Documentation | |
env: | |
GRGIT_USER: ${{ secrets.GH_TOKEN }} |