From 33455c79914d5a1d6da8136fc1201357fe0d57dc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 16 Aug 2023 16:29:45 +0000 Subject: [PATCH] Update actions/checkout action to v3 --- .github/workflows/code-tests.yml | 4 ++-- .github/workflows/integration-tests.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-tests.yml b/.github/workflows/code-tests.yml index 6413102..3cca4a8 100644 --- a/.github/workflows/code-tests.yml +++ b/.github/workflows/code-tests.yml @@ -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: @@ -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" diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index b472ff8..dbe3c67 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -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 }}"