Remove automatic dependency submission from GHA #230
This file contains hidden or 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: Test and Build | |
| on: | |
| push: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| inputs: | |
| prerelease: | |
| description: 'The release should be an experimental release' | |
| default: 'NO' | |
| required: true | |
| 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/ | |
| - "25.0" # 2024-01 --> EOL ? | |
| - "29" # 2025-11 --> EOL ? | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - name: Set up Docker | |
| uses: docker/setup-docker-action@3fb92d6d9c634363128c8cce4bc3b2826526370a # v4.4.0 | |
| with: | |
| version: 'type=image,tag=${{ matrix.docker-version }}' | |
| set-host: 'true' | |
| - run: docker swarm init | |
| - name: Test with Gradle | |
| run: ./gradlew assemble check | |
| githubRelease: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_USER: "gocd-contrib" | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| PRERELEASE: "${{ github.event.inputs.prerelease }}" | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - name: Build and release with Gradle | |
| run: ./gradlew githubRelease |