Skip to content

feat(spaceward): fix sending cosmos not using the same rpc as in assets fetch data; fix handling collapsed transactions #44

feat(spaceward): fix sending cosmos not using the same rpc as in assets fetch data; fix handling collapsed transactions

feat(spaceward): fix sending cosmos not using the same rpc as in assets fetch data; fix handling collapsed transactions #44

Workflow file for this run

---
name: Scan for Vulnerabilities
on:
pull_request:
jobs:
scan-trivy-fs:
name: Scan Trivy FS
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
scan-type: "fs"
output: "trivy.txt"
severity: "CRITICAL,HIGH"
- name: Publish Trivy Output to Summary
run: |
if [[ -s trivy.txt ]]; then
{
echo "### Security Output"
echo "<details><summary>Click to expand</summary>"
echo ""
echo '```terraform'
cat trivy.txt
echo '```'
echo "</details>"
} >> $GITHUB_STEP_SUMMARY
fi