Skip to content

Commit

Permalink
build: update actions/checkout and actions/setup-python (#1909)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Dec 9, 2023
1 parent ea6f800 commit 3551acd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
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.9"
- name: Install nox
Expand All @@ -24,9 +24,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
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.10"
- name: Install nox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "{{ default_python_version }}"
- name: Install nox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
python: {{unit_test_python_versions}}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ '{{' }} matrix.python {{ '}}' }}
- name: Install nox
Expand All @@ -37,9 +37,9 @@ jobs:
- unit
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "{{ default_python_version }}"
- name: Install coverage
Expand Down

0 comments on commit 3551acd

Please sign in to comment.