Skip to content

Commit

Permalink
Bump actions/checkout and actions/setup-python
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Jan 30, 2024
1 parent 0e26170 commit 4b38e26
Show file tree
Hide file tree
Showing 55 changed files with 183 additions and 183 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/conda_ci.yml
Expand Up @@ -19,10 +19,10 @@ jobs:

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.8"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_test_action.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
uses: dorny/paths-filter@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/flake8.yml
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
uses: dorny/paths-filter@v2
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Setup Python 🐍
if: steps.changes.outputs.code == 'true'
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "3.7"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mypy.yml
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
uses: dorny/paths-filter@v2
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup Python 🐍
if: steps.changes.outputs.code == 'true'
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "3.7"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python_ci.yml
Expand Up @@ -42,7 +42,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
if: startsWith(github.ref, 'refs/tags/') != true
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Setup Python 🐍
id: setup-python
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.config.python-version }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python_ci_linux.yml
Expand Up @@ -43,7 +43,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
if: startsWith(github.ref, 'refs/tags/') != true
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Setup Python 🐍
id: setup-python
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.config.python-version }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python_ci_macos.yml
Expand Up @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
if: startsWith(github.ref, 'refs/tags/') != true
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Setup Python 🐍
id: setup-python
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.config.python-version }}"

Expand Down
2 changes: 1 addition & 1 deletion repo_helper/templates/docs_test_action.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"
{% if enable_tests %}
- name: Check for changed files
uses: dorny/paths-filter@v2
Expand Down
4 changes: 2 additions & 2 deletions repo_helper/templates/flake8.yml
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
uses: dorny/paths-filter@v2
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Setup Python 🐍
if: steps.changes.outputs.code == 'true'
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "{{ python_deploy_version }}"

Expand Down
16 changes: 8 additions & 8 deletions repo_helper/templates/github_ci.yml
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
if: startsWith(github.ref, 'refs/tags/') != true
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Setup Python 🐍
id: setup-python
if: ${{ brace("steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped'") }}
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ brace('matrix.config.python-version')}}"

Expand All @@ -74,10 +74,10 @@ jobs:
runs-on: "{{ ci_platform }}"
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.8

Expand Down Expand Up @@ -123,11 +123,11 @@ jobs:
runs-on: "{{ ci_platform }}"
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"
if: startsWith(github.ref, 'refs/tags/')

- name: Setup Python 🐍
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
if: startsWith(github.ref, 'refs/tags/')
with:
python-version: 3.8
Expand Down Expand Up @@ -168,10 +168,10 @@ jobs:
if: startsWith(github.ref, 'refs/tags/') || (startsWith(github.event.head_commit.message, 'Bump version') != true)
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.8

Expand Down
2 changes: 1 addition & 1 deletion repo_helper/templates/github_ci_rustpython.yml
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Setup RustPython 🦀 🐍
run: |
Expand Down
4 changes: 2 additions & 2 deletions repo_helper/templates/github_conda_ci.yml
Expand Up @@ -19,10 +19,10 @@ jobs:

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.8"

Expand Down
4 changes: 2 additions & 2 deletions repo_helper/templates/manylinux_build.yml
Expand Up @@ -30,10 +30,10 @@ jobs:

steps:
- name: Checkout 🛎️
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: "${{ brace('matrix.config.python-version') }}"

Expand Down
4 changes: 2 additions & 2 deletions repo_helper/templates/mypy.yml
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
uses: dorny/paths-filter@v2
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup Python 🐍
if: steps.changes.outputs.code == 'true'
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "{{ python_deploy_version }}"

Expand Down
4 changes: 2 additions & 2 deletions tests/test_files/test_ci_cd_/test_github_ci_case_1.yml
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
if: startsWith(github.ref, 'refs/tags/') != true
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Setup Python 🐍
id: setup-python
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.config.python-version }}"

Expand Down
4 changes: 2 additions & 2 deletions tests/test_files/test_ci_cd_/test_github_ci_case_2.yml
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
if: startsWith(github.ref, 'refs/tags/') != true
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Setup Python 🐍
id: setup-python
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.config.python-version }}"

Expand Down
4 changes: 2 additions & 2 deletions tests/test_files/test_ci_cd_/test_github_ci_windows_38.yml
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
if: startsWith(github.ref, 'refs/tags/') != true
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Setup Python 🐍
id: setup-python
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.config.python-version }}"

Expand Down
4 changes: 2 additions & 2 deletions tests/test_files/test_ci_cd_/test_make_conda_actions_ci.yml
Expand Up @@ -19,10 +19,10 @@ jobs:

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.8"

Expand Down
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Install and Build 🔧
uses: sphinx-toolbox/sphinx-action@sphinx-3.3.1
Expand Down
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Install and Build 🔧
uses: sphinx-toolbox/sphinx-action@sphinx-3.3.1
Expand Down
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
uses: dorny/paths-filter@v2
Expand Down
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
uses: dorny/paths-filter@v2
Expand Down
4 changes: 2 additions & 2 deletions tests/test_files/test_ci_cd_/test_make_github_flake8.yml
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Check for changed files
uses: dorny/paths-filter@v2
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Setup Python 🐍
if: steps.changes.outputs.code == 'true'
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "3.6"

Expand Down

0 comments on commit 4b38e26

Please sign in to comment.