Skip to content

Commit

Permalink
Merge pull request #574 from hartwork/ubuntu-22-04
Browse files Browse the repository at this point in the history
Actions: Ubuntu 22.04 + Python 3.10
  • Loading branch information
hartwork authored Oct 14, 2022
2 parents bcde21c + 886275e commit 2693c0b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test_using_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerignore_detect_out_of_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre_commit_detect_outdated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run_pre_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |-
Expand Down

0 comments on commit 2693c0b

Please sign in to comment.