-
Notifications
You must be signed in to change notification settings - Fork 41
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 dwedul/1658-exchange-module
- Loading branch information
Showing
127 changed files
with
12,952 additions
and
966 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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: 'changelog' | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
- ready_for_review | ||
- labeled | ||
- unlabeled | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
changelog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# Depending on your needs, you can use a token that will re-trigger workflows | ||
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# All commits must be signed, import key and sign commit of updated change log. | ||
- name: Import GPG key | ||
id: import_gpg | ||
uses: crazy-max/ghaction-import-gpg@v6 | ||
with: | ||
# Use a key associated with the provenanceio-bot github account. | ||
gpg_private_key: ${{ secrets.BOT_GPG_PRIVATE_KEY }} | ||
passphrase: ${{ secrets.BOT_GPG_PRIVATE_KEY_PW }} | ||
git_user_signingkey: true | ||
git_commit_gpgsign: true | ||
|
||
- uses: dangoslen/dependabot-changelog-helper@v3 | ||
with: | ||
version: ${{ needs.setup.outputs.version }} | ||
activationLabel: 'dependencies' | ||
changelogPath: './CHANGELOG.md' | ||
|
||
# This step is required for committing the changes to your branch. | ||
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_user_name: "Provenance-io Bot" | ||
commit_user_email: "[email protected]" | ||
commit_options: "-S" | ||
commit_message: "Updated Changelog" |
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 |
---|---|---|
|
@@ -15,9 +15,8 @@ jobs: | |
golangci: | ||
name: golangci-lint | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 6 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/[email protected] | ||
with: | ||
PATTERNS: | | ||
|
@@ -29,12 +28,12 @@ jobs: | |
- uses: actions/setup-go@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
go-version: '1.20' | ||
- uses: golangci/golangci-lint-action@v3.7.0 | ||
go-version: '1.21' | ||
- uses: golangci/golangci-lint-action@v3 | ||
if: env.GIT_DIFF | ||
with: | ||
# If you change this version, be sure to also change it in contrib/devtools/Makefile. | ||
version: v1.52.2 | ||
version: v1.54 | ||
args: --timeout 10m --out-${NO_FUTURE}format colored-line-number | ||
github-token: ${{ secrets.github_token }} | ||
- name: No Now Usage | ||
|
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Buf setup action | ||
uses: bufbuild/[email protected] | ||
- name: Buf push 'third_party/proto' | ||
|
@@ -38,7 +38,7 @@ jobs: | |
buf_token: ${{ secrets.BUF_TOKEN }} | ||
- name: Import GPG key | ||
id: import_gpg | ||
uses: crazy-max/ghaction-import-gpg@v5 | ||
uses: crazy-max/ghaction-import-gpg@v6 | ||
with: | ||
# Use a key associated with the provenanceio-bot github account. | ||
gpg_private_key: ${{ secrets.BOT_GPG_PRIVATE_KEY }} | ||
|
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 |
---|---|---|
|
@@ -64,7 +64,7 @@ jobs: | |
name: Build OSX | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
|
@@ -91,7 +91,7 @@ jobs: | |
LD_LIBRARY_PATH: /usr/local/lib:/usr/local/lib/x86_64-linux-gnu | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
|
@@ -123,7 +123,7 @@ jobs: | |
LD_LIBRARY_PATH: /usr/local/lib:/usr/local/lib/x86_64-linux-gnu | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
|
@@ -156,7 +156,7 @@ jobs: | |
name: Protobuf Push | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Buf setup action | ||
uses: bufbuild/[email protected] | ||
- name: Buf push 'proto/' | ||
|
@@ -175,7 +175,7 @@ jobs: | |
name: Create Release | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Create release ${{ needs.build_init.outputs.version }} | ||
uses: actions/create-release@v1 | ||
id: create_release | ||
|
@@ -199,7 +199,7 @@ jobs: | |
name: Attach Release Artifacts | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
|
@@ -277,7 +277,7 @@ jobs: | |
name: Java/Kotlin Proto Publishing | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Java Setup | ||
uses: actions/setup-java@v3 | ||
|
@@ -317,7 +317,7 @@ jobs: | |
name: NPM Proto Publishing | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Publish | ||
uses: provenance-io/[email protected] | ||
with: | ||
|
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,7 +20,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/[email protected] | ||
with: | ||
PATTERNS: | | ||
|
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,7 +24,7 @@ jobs: | |
if: "!contains(github.event.head_commit.message, 'skip-sims')" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/[email protected] | ||
with: | ||
PATTERNS: | | ||
|
@@ -73,7 +73,7 @@ jobs: | |
if: needs.setup.outputs.should-run | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Output setup | ||
run: | | ||
echo " go-version: [${{ needs.setup.outputs.go-version }}]" | ||
|
@@ -143,7 +143,7 @@ jobs: | |
os: ["ubuntu-latest"] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v3 | ||
name: Load go cache | ||
with: | ||
|
@@ -202,7 +202,7 @@ jobs: | |
os: ["ubuntu-latest"] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v3 | ||
name: Load db cache | ||
with: | ||
|
@@ -260,7 +260,7 @@ jobs: | |
os: ["ubuntu-latest"] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v3 | ||
name: Load go cache | ||
with: | ||
|
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: | |
setup-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/[email protected] | ||
with: | ||
PATTERNS: | | ||
|
@@ -87,7 +87,7 @@ jobs: | |
env: | ||
LD_LIBRARY_PATH: /usr/local/lib:/usr/local/lib/x86_64-linux-gnu | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
# CodeCov requires fetch-depth > 1 | ||
fetch-depth: 2 | ||
|
@@ -119,7 +119,7 @@ jobs: | |
# it's in the steps below (except the checkout step). | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
# CodeCov requires fetch-depth > 1 | ||
fetch-depth: 2 | ||
|
@@ -174,7 +174,7 @@ jobs: | |
env: | ||
LD_LIBRARY_PATH: /usr/local/lib:/usr/local/lib/x86_64-linux-gnu | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v4 | ||
if: needs.setup-tests.outputs.should-run | ||
with: | ||
|
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.