-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-zip-212-doc
- Loading branch information
Showing
53 changed files
with
1,088 additions
and
670 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,7 +181,7 @@ jobs: | |
if: ${{ !cancelled() && !failure() && ((github.event_name == 'push' && github.ref_name == 'main') || github.event_name == 'release') }} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
@@ -283,7 +283,7 @@ jobs: | |
if: github.event_name == 'workflow_dispatch' | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
contents: 'read' | ||
id-token: 'write' | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
@@ -239,7 +239,7 @@ jobs: | |
contents: 'read' | ||
id-token: 'write' | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
|
||
# Setup Rust with stable toolchain and minimal profile | ||
- name: Setup Rust | ||
|
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 |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
- uses: r7kamura/[email protected] | ||
|
||
# Setup Rust with stable toolchain and minimal profile | ||
|
@@ -99,14 +99,17 @@ jobs: | |
build: | ||
name: Build ${{ matrix.crate }} crate | ||
timeout-minutes: 90 | ||
needs: [ matrix, check-matrix ] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
# avoid rate-limit errors by only launching a few of these jobs at a time | ||
max-parallel: 2 | ||
fail-fast: true | ||
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
- uses: r7kamura/[email protected] | ||
|
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 |
---|---|---|
|
@@ -57,7 +57,7 @@ jobs: | |
runs-on: ubuntu-latest-xl | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
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 |
---|---|---|
|
@@ -30,14 +30,14 @@ jobs: | |
rust: ${{ steps.changed-files-rust.outputs.any_changed == 'true' }} | ||
workflows: ${{ steps.changed-files-workflows.outputs.any_changed == 'true' }} | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
|
||
- name: Rust files | ||
id: changed-files-rust | ||
uses: tj-actions/[email protected].1 | ||
uses: tj-actions/[email protected].3 | ||
with: | ||
files: | | ||
**/*.rs | ||
|
@@ -49,7 +49,7 @@ jobs: | |
- name: Workflow files | ||
id: changed-files-workflows | ||
uses: tj-actions/[email protected].1 | ||
uses: tj-actions/[email protected].3 | ||
with: | ||
files: | | ||
.github/workflows/*.yml | ||
|
@@ -62,7 +62,7 @@ jobs: | |
if: ${{ needs.changed-files.outputs.rust == 'true' }} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
@@ -112,7 +112,7 @@ jobs: | |
if: ${{ needs.changed-files.outputs.rust == 'true' }} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
- uses: r7kamura/[email protected] | ||
|
@@ -142,7 +142,7 @@ jobs: | |
needs: changed-files | ||
if: ${{ needs.changed-files.outputs.workflows == 'true' }} | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
- name: actionlint | ||
uses: reviewdog/[email protected] | ||
with: | ||
|
@@ -155,7 +155,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: changed-files | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
- uses: plettich/action-codespell@master | ||
with: | ||
github_token: ${{ secrets.github_token }} | ||
|
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 |
---|---|---|
|
@@ -95,7 +95,7 @@ jobs: | |
features: " --features getblocktemplate-rpcs" | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
- uses: r7kamura/[email protected] | ||
|
@@ -209,7 +209,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
- uses: r7kamura/[email protected] | ||
|
@@ -231,7 +231,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
- uses: r7kamura/[email protected] | ||
|
@@ -274,7 +274,7 @@ jobs: | |
continue-on-error: ${{ matrix.checks == 'advisories' }} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
- uses: r7kamura/[email protected] | ||
|
@@ -295,7 +295,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout git repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
- uses: r7kamura/[email protected] | ||
|
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 |
---|---|---|
|
@@ -72,7 +72,7 @@ jobs: | |
pull-requests: write | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
@@ -125,7 +125,7 @@ jobs: | |
pull-requests: write | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
@@ -181,7 +181,7 @@ jobs: | |
pull-requests: write | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
dockerHubDescription: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
id-token: 'write' | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
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 |
---|---|---|
|
@@ -70,7 +70,7 @@ jobs: | |
- uses: r7kamura/[email protected] | ||
|
||
- name: Checkout git repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
|
||
|
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 |
---|---|---|
|
@@ -61,7 +61,7 @@ jobs: | |
contents: 'read' | ||
id-token: 'write' | ||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
persist-credentials: false | ||
- uses: r7kamura/[email protected] | ||
|
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 |
---|---|---|
|
@@ -56,14 +56,14 @@ jobs: | |
id-token: 'write' | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
# Note: check service.proto when modifying lightwalletd repo | ||
repository: zcash/lightwalletd | ||
ref: 'master' | ||
persist-credentials: false | ||
|
||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
path: zebra | ||
persist-credentials: false | ||
|
Oops, something went wrong.