-
Notifications
You must be signed in to change notification settings - Fork 182
Stellar scafold fargate backend #646
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
Open
CoveMB
wants to merge
71
commits into
OpenZeppelin:master
Choose a base branch
from
CoveMB:stellar-scafold-fargate-backend
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
71 commits
Select commit
Hold shift + click to select a range
27ebf04
Before running with prettier
CoveMB 7c7828e
After running with prettier
CoveMB ce5fcd3
Add consistent-type-imports rule
CoveMB 3cd0b59
Add lint step in ci action
CoveMB 31f0c78
resolve prettier conflict
CoveMB 365421b
After running with prettier
CoveMB cedaeaa
resolve prettier conflict
CoveMB 98bd8af
Add lint step in ci action
CoveMB a9098d0
resolve prettier conflict
CoveMB 6e9df26
resolve prettier conflict
CoveMB 574a739
Remove .vscode directory from Git tracking
CoveMB c0e9002
move linter action in it's own job
CoveMB 86c65dc
add lint note in readme
CoveMB a1111d3
Update .github/workflows/test.yml
CoveMB abbd5a4
Merge remote-tracking branch 'upstream/master'
CoveMB beffa34
Merge branch 'master' into master
ericglau d6bec2a
lint script files
CoveMB 315b775
Merge branch 'master' of github.com:CoveMB/contracts-wizard
CoveMB 6ed6e4f
Merge remote-tracking branch 'upstream/master'
CoveMB ea90cd1
Merge remote-tracking branch 'upstream/master'
CoveMB abf687a
Merge remote-tracking branch 'upstream/master'
CoveMB 426b62d
Merge remote-tracking branch 'upstream/master'
CoveMB ea25cc1
Merge remote-tracking branch 'upstream/master'
CoveMB 0911f87
Merge remote-tracking branch 'upstream/master'
CoveMB 4914083
Merge remote-tracking branch 'upstream/master'
CoveMB 5ce527f
Merge remote-tracking branch 'upstream/master'
CoveMB 03a32fc
Merge remote-tracking branch 'upstream/master'
CoveMB b3c0347
Merge remote-tracking branch 'upstream/master'
CoveMB 0a52a65
Merge remote-tracking branch 'upstream/master'
CoveMB 9e74342
Merge remote-tracking branch 'upstream/master'
CoveMB d727f51
Merge remote-tracking branch 'upstream/master'
CoveMB 60fb18f
Merge remote-tracking branch 'upstream/master'
CoveMB cbb7631
Merge remote-tracking branch 'upstream/master'
CoveMB 0f1267f
Merge remote-tracking branch 'upstream/master'
CoveMB acc5e6e
Merge remote-tracking branch 'upstream/master'
CoveMB e3b74c8
Merge remote-tracking branch 'upstream/master'
CoveMB 16ba867
Merge remote-tracking branch 'upstream/master'
CoveMB 10442ac
Merge remote-tracking branch 'upstream/master'
CoveMB f3d5bea
Merge remote-tracking branch 'upstream/master'
CoveMB 4427128
Merge remote-tracking branch 'upstream/master'
CoveMB e4734df
Merge remote-tracking branch 'upstream/master'
CoveMB 52bd1e0
Merge remote-tracking branch 'upstream/master'
CoveMB 0de594f
Merge branch 'master' of github.com:CoveMB/contracts-wizard
CoveMB 66695d7
add Dokerfile
CoveMB d78e5f0
Merge remote-tracking branch 'upstream/master' into stellar-scafold-f…
CoveMB 0376b76
initial api
CoveMB 8509514
cargo build
CoveMB 091a69b
Add middlewares
CoveMB becb85e
remove target
CoveMB dc007ae
Add dev dokerfile
CoveMB 8b63041
move stellaer api
CoveMB 9538a3d
Add Deno container
CoveMB bf0b818
Update deserialization
CoveMB 8519b30
Add zip utilities
CoveMB 84ba5f9
Update Dokerfile, more secure unzip
CoveMB c288120
update unzip
CoveMB f3c0312
Merge remote-tracking branch 'upstream/master' into stellar-scafold-f…
CoveMB 61ffb5f
file by file unzip
CoveMB 8dfee0c
Download from UI
CoveMB b9462b4
Add github actions
CoveMB 2fa7d31
Update Dokerfile.prod
CoveMB 9468e21
Address comments
CoveMB 9cfd00c
Merge remote-tracking branch 'upstream/master' into stellar-scafold-f…
CoveMB b2b01cc
Adjust docker context in ci
CoveMB 448cdef
use setup instead of prepare
CoveMB a017ba9
Merge remote-tracking branch 'upstream/master' into stellar-scafold-f…
CoveMB d3343a5
Merge branch 'master' into stellar-scafold-fargate-backend
CoveMB 2b982cd
Merge deno update
CoveMB bb16468
Update Dokerfile.prod
CoveMB c35a1d8
Update dependenncies
CoveMB 337caa7
chore: refactor the release workflows
collins-w File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| --- | ||
| name: AWS OIDC Credentials via Role Assume Chaining | ||
| description: Retrieve AWS credentials by chaining role assumes | ||
| inputs: | ||
| role-for-oidc: | ||
| description: The role that should be used for GitHub OIDC authentication | ||
| required: true | ||
| role-to-assume: | ||
| description: The role that should be finally assumed | ||
| required: true | ||
| role-session-name: | ||
| description: The session name that should be used when assuming roles | ||
| required: true | ||
| default: github-actions | ||
| role-duration-seconds: | ||
| description: duration of the credentials validity | ||
| required: true | ||
| default: "3600" | ||
| aws-region: | ||
| description: The AWS region | ||
| required: false | ||
| default: us-east-1 | ||
|
|
||
| runs: | ||
| using: composite | ||
| steps: | ||
| - name: assume oidc role | ||
| uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0 | ||
| with: | ||
| aws-region: ${{ inputs.aws-region }} | ||
| role-to-assume: ${{ inputs.role-for-oidc }} | ||
| role-session-name: ${{ inputs.role-session-name }} | ||
| role-duration-seconds: 900 | ||
| - name: assume target role | ||
| uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0 | ||
| id: assume-target-role | ||
| with: | ||
| aws-access-key-id: ${{ env.AWS_ACCESS_KEY_ID }} | ||
| aws-secret-access-key: ${{ env.AWS_SECRET_ACCESS_KEY }} | ||
| aws-session-token: ${{ env.AWS_SESSION_TOKEN }} | ||
| aws-region: ${{ inputs.aws-region }} | ||
| role-chaining: true | ||
| role-to-assume: ${{ inputs.role-to-assume }} | ||
| role-session-name: ${{ inputs.role-session-name }} | ||
| role-duration-seconds: ${{ inputs.role-duration-seconds }} |
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,133 @@ | ||
| # This workflow runs whenever a release is created. | ||
| # The image is tagged with latest and the release version. | ||
| name: (Production) Build and Deploy | ||
|
|
||
| on: | ||
| release: | ||
| types: [published] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| build-and-push: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| packages: write | ||
| attestations: write | ||
| security-events: write | ||
| env: | ||
| REGISTRY: ${{ secrets.RESEARCH_ACCOUNT_ID }}.dkr.ecr.us-east-1.amazonaws.com | ||
| ROLE_FOR_OIDC: 'arn:aws:iam::${{ secrets.ROOT_ACCOUNT_ID }}:role/github-actions-research-account-oidc-role' | ||
| ROLE_TO_ASSUME: 'arn:aws:iam::${{ secrets.RESEARCH_ACCOUNT_ID }}:role/GithubOIDCResearchAccountRole' | ||
| steps: | ||
| - name: Harden the runner (Audit all outbound calls) | ||
| uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | ||
| with: | ||
| egress-policy: audit | ||
|
|
||
| - uses: actions/create-github-app-token@af35edadc00be37caa72ed9f3e6d5f7801bfdf09 # v1.11.7 | ||
| id: gh-app-token | ||
| with: | ||
| app-id: ${{ vars.GH_APP_ID }} | ||
| private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} | ||
|
|
||
| - name: Checkout Repo | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
| with: | ||
| token: ${{ steps.gh-app-token.outputs.token }} | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Setup pre-requisites | ||
| uses: ./.github/actions/setup | ||
| with: | ||
| token: ${{ steps.gh-app-token.outputs.token }} | ||
|
|
||
| - name: Set up QEMU | ||
| uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0 | ||
| with: | ||
| platforms: 'arm64' | ||
|
|
||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 | ||
|
|
||
| - name: Set up AWS credentials via OIDC and role chaining | ||
| uses: ./.github/actions/oidc | ||
| with: | ||
| role-for-oidc: ${{ env.ROLE_FOR_OIDC }} | ||
| role-to-assume: ${{ env.ROLE_TO_ASSUME }} | ||
|
|
||
| - name: Login to Amazon ECR | ||
| uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1 | ||
|
|
||
| - name: Build Stellar API Docker image | ||
| uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 | ||
| id: build | ||
| with: | ||
| context: . | ||
| platforms: linux/amd64 # linux/arm64 causes anchore/scan-action to fail | ||
| tags: | | ||
| ${{ env.REGISTRY }}/wizard-stellar-api-prod:latest | ||
| ${{ env.REGISTRY }}/wizard-stellar-api-prod:${{ github.sha }} | ||
| cache-from: type=gha | ||
| cache-to: type=gha,mode=max | ||
| load: true | ||
|
|
||
| - name: Scan Stellar API Docker image | ||
| uses: anchore/scan-action@df395807f4554463d4455b8047cf58e37b6acaae # v6.5.0 | ||
| id: scan | ||
| with: | ||
| image: ${{ env.REGISTRY }}/wizard-stellar-api-prod:${{ github.sha }} | ||
| fail-build: false | ||
|
|
||
| - name: Upload Anchore scan SARIF report | ||
| uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5 | ||
| with: | ||
| sarif_file: ${{ steps.scan.outputs.sarif }} | ||
|
|
||
| - name: Build and push Stellar API Docker image | ||
| uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 | ||
| id: push | ||
| with: | ||
| context: packages/ui/api/stellar | ||
| file: Dockerfile.prod | ||
| platforms: linux/arm64 | ||
| push: true | ||
| tags: | | ||
| ${{ env.REGISTRY }}/wizard-api-prod:latest | ||
| ${{ env.REGISTRY }}/wizard-api-prod:${{ github.sha }} | ||
| cache-from: type=gha | ||
| cache-to: type=gha,mode=max | ||
|
|
||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| needs: build-and-push | ||
| env: | ||
| ROLE_FOR_OIDC: "${{ secrets.ROLE_FOR_OIDC }}" | ||
| ROLE_TO_ASSUME: "${{ secrets.ROLE_TO_ASSUME }}" | ||
| ECS_CLUSTER: ${{ vars.ECS_PRD_CLUSTER }} | ||
| ECS_SERVICE: ${{ vars.ECS_PRD_SERVICE }} | ||
| AWS_REGION: ${{ vars.AWS_REGION }} | ||
| permissions: | ||
| contents: read | ||
| id-token: write | ||
| steps: | ||
| - name: Harden the runner (Audit all outbound calls) | ||
| uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | ||
| with: | ||
| egress-policy: audit | ||
|
|
||
| - name: Checkout code | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
|
||
| - name: Set up AWS credentials via OIDC and role chaining | ||
| uses: ./.github/actions/oidc | ||
| with: | ||
| role-for-oidc: ${{ env.ROLE_FOR_OIDC }} | ||
| role-to-assume: ${{ env.ROLE_TO_ASSUME }} | ||
|
|
||
| - name: AWS ECS force new deployment | ||
| run: | | ||
| aws ecs update-service --cluster $ECS_CLUSTER --service $ECS_SERVICE --force-new-deployment --region $AWS_REGION | ||
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,126 @@ | ||
| # This workflow runs whenever a release is created. | ||
| # The image is tagged with latest and the release version. | ||
| name: (Staging) Build and Deploy | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| workflow_dispatch: | ||
| inputs: | ||
| branch: | ||
| description: 'Branch to build from' | ||
| required: true | ||
| default: 'main' | ||
| type: string | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| build-and-push: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| packages: write | ||
| attestations: write | ||
| security-events: write | ||
| env: | ||
| REGISTRY: ${{ vars.DOCKER_REGISTRY }} | ||
| ROLE_FOR_OIDC: "${{ secrets.ROLE_FOR_OIDC }}" | ||
| ROLE_TO_ASSUME: "${{ secrets.ROLE_TO_ASSUME }}" | ||
| steps: | ||
| - name: Harden the runner (Audit all outbound calls) | ||
| uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | ||
| with: | ||
| egress-policy: audit | ||
|
|
||
| - name: Checkout code | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
|
||
| - name: Set up QEMU | ||
| uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0 | ||
| with: | ||
| platforms: 'arm64' | ||
|
|
||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 | ||
|
|
||
| - name: Set up AWS credentials via OIDC and role chaining | ||
| uses: ./.github/actions/oidc | ||
| with: | ||
| role-for-oidc: ${{ env.ROLE_FOR_OIDC }} | ||
| role-to-assume: ${{ env.ROLE_TO_ASSUME }} | ||
|
|
||
| - name: Login to Amazon ECR | ||
| uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1 | ||
|
|
||
| - name: Build Stellar API Docker image | ||
| uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 | ||
| id: build | ||
| with: | ||
| context: ./packages/ui/api/stellar | ||
| platforms: linux/amd64 # linux/arm64 causes anchore/scan-action to fail | ||
| tags: | | ||
| ${{ env.REGISTRY }}/wizard-api-stg:latest | ||
| ${{ env.REGISTRY }}/wizard-api-stg:${{ github.sha }} | ||
| cache-from: type=gha | ||
| cache-to: type=gha,mode=max | ||
| load: true | ||
|
|
||
| - name: Scan Stellar API Docker image | ||
| uses: anchore/scan-action@df395807f4554463d4455b8047cf58e37b6acaae # v6.5.0 | ||
| id: scan | ||
| with: | ||
| image: ${{ env.REGISTRY }}/wizard-stellar-api-stg:${{ github.sha }} | ||
| fail-build: false | ||
|
|
||
| - name: Upload Anchore scan SARIF report | ||
| uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5 | ||
| with: | ||
| sarif_file: ${{ steps.scan.outputs.sarif }} | ||
|
|
||
| - name: Build and push Stellar API Docker image | ||
| uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 | ||
| id: push | ||
| with: | ||
| context: packages/ui/api/stellar | ||
| file: Dockerfile.prod | ||
| platforms: linux/arm64 | ||
| push: true | ||
| tags: | | ||
| ${{ env.REGISTRY }}/wizard-stellar-api-stg:latest | ||
| ${{ env.REGISTRY }}/wizard-stellar-api-stg:${{ github.sha }} | ||
| cache-from: type=gha | ||
| cache-to: type=gha,mode=max | ||
|
|
||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| needs: build-and-push | ||
| env: | ||
| ROLE_FOR_OIDC: "${{ secrets.ROLE_FOR_OIDC }}" | ||
| ROLE_TO_ASSUME: "${{ secrets.ROLE_TO_ASSUME }}" | ||
| ECS_CLUSTER: ${{ vars.ECS_STG_CLUSTER }} | ||
| ECS_SERVICE: ${{ vars.ECS_STG_SERVICE }} | ||
| AWS_REGION: ${{ vars.REGION }} | ||
| permissions: | ||
| contents: read | ||
| id-token: write | ||
| steps: | ||
| - name: Harden the runner (Audit all outbound calls) | ||
| uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | ||
| with: | ||
| egress-policy: audit | ||
|
|
||
| - name: Checkout code | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
|
||
| - name: Set up AWS credentials via OIDC and role chaining | ||
| uses: ./.github/actions/oidc | ||
| with: | ||
| role-for-oidc: ${{ env.ROLE_FOR_OIDC }} | ||
| role-to-assume: ${{ env.ROLE_TO_ASSUME }} | ||
|
|
||
| - name: AWS ECS force new deployment | ||
| run: | | ||
| aws ecs update-service --cluster $ECS_CLUSTER --service $ECS_SERVICE --force-new-deployment --region $AWS_REGION |
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 | ||
|---|---|---|---|---|
|
|
@@ -5,3 +5,9 @@ node_modules | |||
| .env | ||||
| .env.local | ||||
| .vscode/settings.json | ||||
| .qodo/ | ||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
|
|
||||
| # Generated by Cargo | ||||
| # will have compiled files and executables | ||||
| debug/ | ||||
| target/ | ||||
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 |
|---|---|---|
|
|
@@ -15,4 +15,5 @@ build/ | |
| public/ | ||
| remappings.txt | ||
| *.cairo | ||
| *.sh | ||
| *.sh | ||
| *.rs | ||
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
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,4 @@ | ||
| ENV="dev" | ||
|
|
||
| API_HOST=http://localhost:3000 | ||
| FARGATE_HOST=http://localhost:8888 |
Oops, something went wrong.
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.
Local action input mismatch (actionlint):
setupaction lacks atokeninput and description.Per static analysis,
./.github/actions/setupdoesn’t defineinputs.tokenand is missingdescription. This step will error.Options:
inputs.tokenanddescriptionin./.github/actions/setup/action.yml, orwith: token: ...from this step if unused.🧰 Tools
🪛 actionlint (1.7.7)
44-44: description is required in metadata of "Setup" action at "/home/jailuser/git/.github/actions/setup/action.yml"
(action)
46-46: input "token" is not defined in action "Setup" defined at "./.github/actions/setup". available inputs are
(action)
🤖 Prompt for AI Agents