RAD-197: Reference develop branch for reusable workflow with JDK 21 #18
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: Java Workflow | |
on: [push, pull_request] | |
jobs: | |
call-java-workflow: | |
uses: brightsparklabs/github-actions/.github/workflows/java.yml@develop | |
# Since all of our workflows are called from the same organisation, we can use the `inherit` | |
# keyword to pass secrets to the called workflow. | |
secrets: inherit | |
# These permissions are required for Dependabot to merge PRs. | |
permissions: | |
contents: write | |
pull-requests: write | |
with: | |
java_version: "21" |