build(deps): bump serde_json from 1.0.119 to 1.0.127 #1120
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: Check runtime changes | |
on: | |
pull_request: | |
branches: [dev, testnet, main] | |
permissions: read-all | |
jobs: | |
check-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check if version.rs was modified | |
run: | | |
./scripts/check-version.sh "remotes/origin/$GITHUB_BASE_REF" "$GITHUB_SHA" | |
# dangerous conditions that will brick the blockchain | |
danger-will-brick-the-blockchain: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check for changes in Proof-of-Stake EPOCH duration | |
run: | | |
./scripts/check-for-changes-in-epoch-duration.sh "remotes/origin/$GITHUB_BASE_REF" "$GITHUB_SHA" |