Update labeler.yml to reference v4 not main (which is now v5) #1551
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: Test | |
on: | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
test_groovy: | |
name: Groovy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Run Groovy Tests | |
run: | | |
cd pipelines | |
./gradlew --info test |