Bump github.com/CosmWasm/wasmvm from 1.5.4 to 1.5.5 #2980
Workflow file for this run
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: Verify no Admins change | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Verify admins.go did not change | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check if admins.go changed | |
id: admin-go-changed | |
uses: tj-actions/changed-files@v41 | |
with: | |
files: | | |
utils/admins.go | |
- name: Fail if admins.go changed | |
if: steps.admin-go-changed.outputs.any_changed == 'true' | |
run: echo "Admin file was changed" && exit 1 |