-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update technote-space/get-diff-action requirement to v4 (#7510)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alessio Treglia <[email protected]> Co-authored-by: Marko Baricevic <[email protected]>
- Loading branch information
1 parent
0f70b88
commit d7ad658
Showing
3 changed files
with
119 additions
and
121 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 |
---|---|---|
|
@@ -54,23 +54,21 @@ jobs: | |
go-version: 1.15 | ||
- name: Display go version | ||
run: go version | ||
- uses: technote-space/get-diff-action@v3 | ||
- uses: technote-space/get-diff-action@v4 | ||
with: | ||
SUFFIX_FILTER: | | ||
.go | ||
.mod | ||
.sum | ||
SET_ENV_NAME_INSERTIONS: 1 | ||
SET_ENV_NAME_LINES: 1 | ||
PATTERNS: | | ||
**/**.go | ||
go.mod | ||
go.sum | ||
- uses: actions/[email protected] | ||
with: | ||
path: ~/go/bin | ||
key: ${{ runner.os }}-go-runsim-binary | ||
if: "env.GIT_DIFF != ''" | ||
if: env.GIT_DIFF | ||
- name: test-sim-nondeterminism | ||
run: | | ||
make test-sim-nondeterminism | ||
if: "env.GIT_DIFF != ''" | ||
if: env.GIT_DIFF | ||
|
||
test-sim-import-export: | ||
runs-on: ubuntu-latest | ||
|
@@ -82,23 +80,23 @@ jobs: | |
go-version: 1.15 | ||
- name: Display go version | ||
run: go version | ||
- uses: technote-space/get-diff-action@v3 | ||
- uses: technote-space/get-diff-action@v4 | ||
with: | ||
SUFFIX_FILTER: | | ||
.go | ||
.mod | ||
.sum | ||
**/**.go | ||
go.mod | ||
go.sum | ||
SET_ENV_NAME_INSERTIONS: 1 | ||
SET_ENV_NAME_LINES: 1 | ||
- uses: actions/[email protected] | ||
with: | ||
path: ~/go/bin | ||
key: ${{ runner.os }}-go-runsim-binary | ||
if: "env.GIT_DIFF != ''" | ||
if: env.GIT_DIFF | ||
- name: test-sim-import-export | ||
run: | | ||
make test-sim-import-export | ||
if: "env.GIT_DIFF != ''" | ||
if: env.GIT_DIFF | ||
|
||
test-sim-after-import: | ||
runs-on: ubuntu-latest | ||
|
@@ -110,23 +108,23 @@ jobs: | |
go-version: 1.15 | ||
- name: Display go version | ||
run: go version | ||
- uses: technote-space/get-diff-action@v3 | ||
- uses: technote-space/get-diff-action@v4 | ||
with: | ||
SUFFIX_FILTER: | | ||
.go | ||
.mod | ||
.sum | ||
**/**.go | ||
go.mod | ||
go.sum | ||
SET_ENV_NAME_INSERTIONS: 1 | ||
SET_ENV_NAME_LINES: 1 | ||
- uses: actions/[email protected] | ||
with: | ||
path: ~/go/bin | ||
key: ${{ runner.os }}-go-runsim-binary | ||
if: "env.GIT_DIFF != ''" | ||
if: env.GIT_DIFF | ||
- name: test-sim-after-import | ||
run: | | ||
make test-sim-after-import | ||
if: "env.GIT_DIFF != ''" | ||
if: env.GIT_DIFF | ||
|
||
test-sim-multi-seed-short: | ||
runs-on: ubuntu-latest | ||
|
@@ -138,20 +136,20 @@ jobs: | |
go-version: 1.15 | ||
- name: Display go version | ||
run: go version | ||
- uses: technote-space/get-diff-action@v3 | ||
- uses: technote-space/get-diff-action@v4 | ||
with: | ||
SUFFIX_FILTER: | | ||
.go | ||
.mod | ||
.sum | ||
**/**.go | ||
go.mod | ||
go.sum | ||
SET_ENV_NAME_INSERTIONS: 1 | ||
SET_ENV_NAME_LINES: 1 | ||
- uses: actions/[email protected] | ||
with: | ||
path: ~/go/bin | ||
key: ${{ runner.os }}-go-runsim-binary | ||
if: "env.GIT_DIFF != ''" | ||
if: env.GIT_DIFF | ||
- name: test-sim-multi-seed-short | ||
run: | | ||
make test-sim-multi-seed-short | ||
if: "env.GIT_DIFF != ''" | ||
if: env.GIT_DIFF |
Oops, something went wrong.