forked from stacks-network/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main'
* upstream/main: (26 commits) link on summary the documentation on how to fix the mutants' output mutants: add link to summary on failed output job cases documentation how mutants output should be treated fix: run one test at a time fix(rustfmt): Exit script with error code on failure fix(rustfmt): Read `rustfmt` alias from `.cargo/config` or `.cargo/config.toml` feat: remove `./` feat: check if release dir exists before trying to access it feat: setup rustfmt in composite actions feat: get rid of the `release/` path in the generated checksums fix: remove leftover git diff file feat: upload and download artifacts under different names feat: update all actions versions used more whitepsace removal remove whitespace remove portable build flag remove portable stacks-network/stacks-core#4646 change to check for unviable from inexistent file to empty file remove conditional build build all binaries and copy them with find where possible (macos arm64 is outlier) ...
- Loading branch information
Showing
30 changed files
with
240 additions
and
124 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
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
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
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 |
---|---|---|
|
@@ -40,7 +40,7 @@ runs: | |
if: | | ||
inputs.action == 'check' || | ||
inputs.action == 'save' | ||
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
id: check_cache | ||
with: | ||
lookup-only: true | ||
|
@@ -57,9 +57,9 @@ runs: | |
if: | | ||
inputs.action == 'restore' | ||
id: restore_cache | ||
uses: Wandalen/wretry.action@4ca71ac27896a6670a57267cf3ddec528278c86f # v2.0.0 | ||
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0 | ||
with: | ||
action: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 | ||
action: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
with: | | ||
fail-on-cache-miss: ${{ inputs.fail-on-cache-miss }} | ||
path: | | ||
|
@@ -78,7 +78,7 @@ runs: | |
inputs.action == 'save' && | ||
steps.check_cache.outputs.cache-hit != 'true' | ||
id: install_nextest | ||
uses: taiki-e/install-action@ac89944b5b150d78567ab6c02badfbe48b0b55aa # v2.20.16 | ||
uses: taiki-e/install-action@2f990e9c484f0590cb76a07296e9677b417493e9 # v2.33.23 | ||
with: | ||
tool: nextest # can be versioned, ex: [email protected] | ||
|
||
|
@@ -89,7 +89,7 @@ runs: | |
inputs.action == 'save' && | ||
steps.check_cache.outputs.cache-hit != 'true' | ||
id: install_grcov | ||
uses: taiki-e/install-action@ac89944b5b150d78567ab6c02badfbe48b0b55aa # v2.20.16 | ||
uses: taiki-e/install-action@2f990e9c484f0590cb76a07296e9677b417493e9 # v2.33.23 | ||
with: | ||
tool: grcov # can be versioned, ex: [email protected] | ||
|
||
|
@@ -99,9 +99,9 @@ runs: | |
inputs.action == 'save' && | ||
steps.check_cache.outputs.cache-hit != 'true' | ||
id: save_cache | ||
uses: Wandalen/wretry.action@4ca71ac27896a6670a57267cf3ddec528278c86f # v2.0.0 | ||
uses: Wandalen/wretry.action@6feedb7dedadeb826de0f45ff482b53b379a7844 # v3.5.0 | ||
with: | ||
action: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 | ||
action: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | ||
with: | | ||
path: | | ||
~/.cargo/bin/ | ||
|
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
Oops, something went wrong.