Skip to content

Commit

Permalink
Merge pull request #46 from syseleven/renovate/actions-checkout-3.x
Browse files Browse the repository at this point in the history
Update actions/checkout action to v3
  • Loading branch information
Adri2000 authored Aug 16, 2023
2 parents 89bbb10 + 33455c7 commit dbb76af
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@v2
uses: actions/checkout@v3
- 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@v2
uses: actions/checkout@v3
- 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@v2
uses: actions/checkout@v3
- 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 dbb76af

Please sign in to comment.