diff --git a/.github/workflows/build_and_test_using_docker.yml b/.github/workflows/build_and_test_using_docker.yml index 9a221d19..b45857a8 100644 --- a/.github/workflows/build_and_test_using_docker.yml +++ b/.github/workflows/build_and_test_using_docker.yml @@ -7,14 +7,14 @@ on: jobs: build_and_test: name: Build and test using Docker - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3.1.0 - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: '3.10' - name: Install dependencies run: |- diff --git a/.github/workflows/dockerignore_detect_out_of_sync.yml b/.github/workflows/dockerignore_detect_out_of_sync.yml index 4958d50a..0fccce36 100644 --- a/.github/workflows/dockerignore_detect_out_of_sync.yml +++ b/.github/workflows/dockerignore_detect_out_of_sync.yml @@ -7,7 +7,7 @@ on: jobs: dockerignore_detect_out_of_sync: name: Detect .dockerignore out-of-sync with git ls-files - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3.1.0 diff --git a/.github/workflows/pre_commit_detect_outdated.yml b/.github/workflows/pre_commit_detect_outdated.yml index 47e73ad7..efe7f963 100644 --- a/.github/workflows/pre_commit_detect_outdated.yml +++ b/.github/workflows/pre_commit_detect_outdated.yml @@ -13,7 +13,7 @@ permissions: jobs: pre_commit_detect_outdated: name: Detect outdated pre-commit hooks - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3.1.0 diff --git a/.github/workflows/run_pre_commit.yml b/.github/workflows/run_pre_commit.yml index ac43b630..bd70d096 100644 --- a/.github/workflows/run_pre_commit.yml +++ b/.github/workflows/run_pre_commit.yml @@ -7,14 +7,14 @@ on: jobs: run_pre_commit: name: Run pre-commit on all files - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3.1.0 - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: '3.10' - name: Install pre-commit run: |-