chore: add sushy-static deployment support on k8s #248
Workflow file for this run
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
name: Check x/crypto | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
jobs: | |
check-x-crypto-deps: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
name: Check x/crypto Dependencies in Pull Request | |
steps: | |
- name: checkout source | |
uses: actions/checkout@v5 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
fetch-depth: 0 | |
- name: fetch base branch | |
run: | | |
git fetch https://github.com/${{ github.event.pull_request.base.repo.full_name }}.git \ | |
${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }} | |
- name: setup go | |
uses: actions/[email protected] | |
with: | |
go-version-file: go.mod | |
cache: false | |
- name: Search for x/crypto dependencies | |
uses: ./.github/check-x-crypto | |
with: | |
base_ref: ${{ github.event.pull_request.base.ref }} | |
head_sha: ${{ github.event.pull_request.head.sha }} |