Skip to content

Commit

Permalink
Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 4, 2023
1 parent f0133f2 commit 8ca3221
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Install python prerequisites
run: "sudo pip3 install tox"
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Perform syntax lint
run: "cd ${{ github.workspace }} && tox -e lint"
Safety-Checks:
Expand All @@ -18,6 +18,6 @@ jobs:
- name: Install python prerequisites
run: "sudo pip3 install tox"
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Perform safety checks
run: "cd ${{ github.workspace }} && tox -e safety"
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- name: Install python prerequisites
run: "sudo pip3 install docker-compose"
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Perform integration tests for python version ${{ matrix.python_version }}
run: "cd ${{ github.workspace }} && docker-compose run --rm integration_tests_py${{ matrix.python_version }}"

0 comments on commit 8ca3221

Please sign in to comment.