[chore]: Bump serde_with from 3.7.0 to 3.8.1 (#4522) #103
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: I2::CI::check_for_incorrect_images | |
on: | |
push: | |
branches: | |
- main | |
- stable | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: pip install -r .github/scripts/ci_test/requirements.txt --no-input | |
- name: Check containers on iroha2 stable branch | |
if: github.base_ref == 'stable' | |
run: python .github/scripts/ci_test/ci_image_scan.py --allow iroha2:stable -- docker-compose*.yml | |
- name: Check containers on iroha2 main branch | |
if: github.base_ref == 'main' | |
run: python .github/scripts/ci_test/ci_image_scan.py --allow iroha2:dev -- docker-compose*.yml |