-
Notifications
You must be signed in to change notification settings - Fork 263
feat: sdk-50 #1993
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
feat: sdk-50 #1993
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
33174a8
feat: sdk-50
troian 8556302
chore(mod): bump pkg.akt.dev modules
troian 68b8d56
refactor: cleanup and migrate akash-api to chain-sdk
troian 3f4c1bc
chore(lint): suppress lint warning for upgrades.sh
troian 4ba6fcd
feat: switch to testutil from chain-sdk
troian b4047f0
fix: JWT CLI scopes documentation missing scopes
cloud-j-luna ca23d99
fix(build): structure of golangci lint config
troian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 @@ | ||
| github.com/akash-network/node |
This file contains hidden or 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,33 @@ | ||
| --- | ||
| name: setup-ubuntu | ||
| runs: | ||
| using: 'composite' | ||
| steps: | ||
| - name: Fetch all tags | ||
| shell: bash | ||
| run: git fetch --prune --unshallow | ||
| - name: Install dependencies | ||
| # Shell must explicitly specify the shell for each step. https://github.com/orgs/community/discussions/18597 | ||
| shell: bash | ||
| run: sudo apt install -y make direnv unzip lz4 wget curl npm jq pv coreutils | ||
| - name: Setup npm | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 18 | ||
| - name: Install git-cliff | ||
| uses: baptiste0928/cargo-install@v3 | ||
| with: | ||
| crate: git-cliff | ||
| - name: Detect required Go version | ||
| shell: bash | ||
| run: | | ||
| toolchain=$(./script/tools.sh gotoolchain | sed 's/go*//') | ||
| echo "GOVERSION=${toolchain}" >> $GITHUB_ENV | ||
| - uses: actions/setup-go@v5 | ||
| with: | ||
| go-version: "${{ env.GOVERSION }}" | ||
| check-latest: true | ||
| - name: set environment | ||
| uses: HatsuneMiku3939/direnv-action@v1 | ||
| with: | ||
| masks: '' |
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Address unknown runner label
The static analysis tool flagged
gh-runner-testas an unknown runner label. If this is a custom self-hosted runner, ensure it's properly configured and consider documenting it in an actionlint.yaml config file.🏁 Script executed:
Length of output: 111
Document custom runner label for actionlint
The workflow at .github/workflows/release.yaml:56 uses a self-hosted runner label
gh-runner-test, but there’s noactionlint.yamlto whitelist it, so actionlint will continue flagging it as unknown. To resolve:• If
gh-runner-testis intended, add anactionlint.yamlat your repo root with:• Otherwise, update the
runs-onvalue to a valid GitHub-hosted or existing self-hosted label.🧰 Tools
🪛 actionlint (1.7.7)
56-56: label "gh-runner-test" is unknown. available labels are "windows-latest", "windows-latest-8-cores", "windows-2025", "windows-2022", "windows-2019", "ubuntu-latest", "ubuntu-latest-4-cores", "ubuntu-latest-8-cores", "ubuntu-latest-16-cores", "ubuntu-24.04", "ubuntu-24.04-arm", "ubuntu-22.04", "ubuntu-22.04-arm", "ubuntu-20.04", "macos-latest", "macos-latest-xl", "macos-latest-xlarge", "macos-latest-large", "macos-15-xlarge", "macos-15-large", "macos-15", "macos-14-xl", "macos-14-xlarge", "macos-14-large", "macos-14", "macos-13-xl", "macos-13-xlarge", "macos-13-large", "macos-13", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file
(runner-label)
🤖 Prompt for AI Agents