-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Showing
4 changed files
with
12 additions
and
11 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 |
---|---|---|
|
@@ -81,7 +81,7 @@ runs: | |
- uses: actions/cache/[email protected] | ||
name: Cache Go Build Outputs (restore) | ||
# For certain events, we don't necessarily want to create a build cache, but we will benefit from restoring from one. | ||
if: ${{ inputs.only-modules == 'false' && github.event == 'merge_queue' }} | ||
if: ${{ inputs.only-modules == 'false' && github.event == 'merge_group' }} | ||
with: | ||
path: | | ||
${{ steps.go-cache-dir.outputs.gobuildcache }} | ||
|
@@ -94,7 +94,7 @@ runs: | |
- uses: actions/[email protected] | ||
# don't save cache on merge queue events, only restore | ||
if: ${{ inputs.only-modules == 'false' && github.event != 'merge_queue' }} | ||
if: ${{ inputs.only-modules == 'false' && github.event != 'merge_group' }} | ||
name: Cache Go Build Outputs | ||
with: | ||
path: | | ||
|
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 |
---|---|---|
|
@@ -91,10 +91,10 @@ jobs: | |
product-image: ${{ secrets.AWS_SDLC_ECR_HOSTNAME }}/chainlink | ||
product-image-tag: develop | ||
- uses: actions/[email protected] | ||
- name: Setup go | ||
uses: actions/setup-go@v5.0.2 | ||
- name: Set up Go | ||
uses: ./.github/actions/setup-go | ||
with: | ||
go-version-file: "go.mod" | ||
go-version-file: 'go.mod' | ||
- name: Run CRIB integration test | ||
working-directory: integration-tests/crib | ||
env: | ||
|
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 |
---|---|---|
|
@@ -24,15 +24,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: [changes] | ||
steps: | ||
- name: Check out code | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
|
||
- name: Set up Go | ||
if: needs.changes.outputs.src == 'true' | ||
uses: actions/setup-go@v5.0.2 | ||
uses: ./.github/actions/setup-go | ||
with: | ||
go-version-file: 'go.mod' | ||
id: go | ||
only-modules: 'true' | ||
|
||
- name: Write Go Modules list | ||
if: needs.changes.outputs.src == 'true' | ||
|