diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 79e84c6db..9d4d7b877 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Start Dashboard, DB, and API Engine run: docker compose -f docker-compose.dev.yaml up -d --build diff --git a/.github/workflows/lint-check.yml b/.github/workflows/lint-check.yml index ee739efd2..b19e98dd0 100644 --- a/.github/workflows/lint-check.yml +++ b/.github/workflows/lint-check.yml @@ -11,15 +11,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.11" - name: Set up Nodejs - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "20" diff --git a/src/api-engine/tox.ini b/src/api-engine/tox.ini index 67872a212..5a7865b04 100644 --- a/src/api-engine/tox.ini +++ b/src/api-engine/tox.ini @@ -5,7 +5,7 @@ # [tox] minversion=2.3.1 -envlist = py38, flake8 +envlist = py311, flake8 skipsdist=True skip_missing_interpreters=True @@ -23,5 +23,5 @@ deps = flake8 commands = flake8 {toxinidir} [gh-actions] -python = - 3.8: py38, flake8 +python = + 3.11: py311, flake8