Skip to content

Commit

Permalink
Bump CI dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
suricactus committed Sep 16, 2024
1 parent 183c898 commit 36ad4eb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ on:
jobs:
code_check:
name: Code check
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
cache: 'pip'

- name: Install formatter
Expand All @@ -31,16 +31,16 @@ jobs:

unit_tests:
name: Run unit tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
cache: 'pip'

- name: Install dependencies
Expand All @@ -51,16 +51,16 @@ jobs:

package_check:
name: Package check
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
cache: 'pip'

- name: Build tools
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/deploy_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ on:
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v1
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.12

- name: Get version number
id: v
Expand Down

0 comments on commit 36ad4eb

Please sign in to comment.