-
Notifications
You must be signed in to change notification settings - Fork 949
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
afb8a78
commit 379d429
Showing
6 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,9 @@ jobs: | |
env: | ||
WORKSPACE: ${{ github.workspace }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: ${{ matrix.java }} | ||
|
@@ -44,11 +44,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: 11 | ||
|
@@ -77,7 +77,7 @@ jobs: | |
id: dispatch_message | ||
run: echo "value={\"message\":\"New Core Snapshot $(date) - $GITHUB_SHA\"}" >> $GITHUB_OUTPUT | ||
- name: Invoke the Java CI workflow in Grails Functional Tests | ||
uses: benc-uk/[email protected] | ||
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2 | ||
with: | ||
workflow: Java CI | ||
repo: grails/grails-functional-tests | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,12 @@ jobs: | |
GIT_USER_EMAIL: [email protected] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
- uses: gradle/wrapper-validation-action@v1 | ||
- uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: ${{ matrix.java }} | ||
|
@@ -98,7 +98,7 @@ jobs: | |
- name: Invoke grails-doc release workflow | ||
if: steps.publish.outcome == 'success' | ||
id: grails_doc | ||
uses: benc-uk/[email protected] | ||
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2 | ||
with: | ||
workflow: Release | ||
repo: grails/grails-doc | ||
|
@@ -108,7 +108,7 @@ jobs: | |
- name: Invoke grails-static-website release workflow | ||
if: steps.publish.outcome == 'success' | ||
id: grails_static_website | ||
uses: benc-uk/[email protected] | ||
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2 | ||
with: | ||
workflow: Release | ||
repo: grails/grails-static-website | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,12 +21,12 @@ jobs: | |
GIT_USER_EMAIL: [email protected] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
ref: "v${{ github.event.inputs.release }}" | ||
token: ${{ secrets.GH_TOKEN }} | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: 11 | ||
|
@@ -54,7 +54,7 @@ jobs: | |
- name: Upload artifacts to the Github release | ||
id: upload_artifact | ||
if: steps.assemble.outcome == 'success' | ||
uses: Roang-zero1/github-upload-release-artifacts-action@v3 | ||
uses: Roang-zero1/github-upload-release-artifacts-action@87271b3f8dca9feb9e9d44381fddd2db7f09d6e1 # v3 | ||
with: | ||
created_tag: v${{ github.event.inputs.release }} | ||
args: build/distributions/grails-${{ steps.release_version.outputs.release_version }}.zip | ||
|
@@ -70,7 +70,7 @@ jobs: | |
- name: Invoke grails-doc release workflow | ||
if: steps.assemble.outcome == 'success' | ||
id: grails_doc | ||
uses: benc-uk/[email protected] | ||
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2 | ||
with: | ||
workflow: Release | ||
repo: grails/grails-doc | ||
|
@@ -80,7 +80,7 @@ jobs: | |
- name: Invoke grails-static-website release workflow | ||
if: steps.assemble.outcome == 'success' | ||
id: grails_static_website | ||
uses: benc-uk/[email protected] | ||
uses: benc-uk/workflow-dispatch@798e70c97009500150087d30d9f11c5444830385 # v1.2 | ||
with: | ||
workflow: Release | ||
repo: grails/grails-static-website | ||
|