build(deps): Bump github.com/cosmos/cosmos-sdk from 0.46.0-beta2.0.20230424095137-b73c17cb9cc8 to 0.52.0-rc.2 in /client/v2 #1730
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
name: "Dependency Review" | |
on: | |
pull_request: | |
merge_group: | |
permissions: | |
contents: read | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.3 | |
- name: "Dependency Review" | |
uses: actions/dependency-review-action@v3 | |
with: | |
base-ref: ${{ github.event.pull_request.base.sha || 'main' }} | |
head-ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
- name: "Dependency audit" | |
run: ./scripts/dep-assert.sh | |
- name: "Go vulnerability check" | |
run: make vulncheck |