Skip to content

Commit

Permalink
update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Feb 18, 2024
1 parent 7ea87f1 commit 061cd63
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python_version }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 1
repository: cython/cython
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nanobind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
repository: wjakob/nanobind
submodules: recursive

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/numpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
timeout-minutes: 120

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
repository: numpy/numpy
path: repo
Expand All @@ -45,7 +45,7 @@ jobs:
choco install -y --checksum 6004DF17818F5A6DBF19CB335CC92702 pkgconfiglite
if: matrix.os == 'windows-latest'

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python_version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pybind11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ jobs:
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
repository: pybind/pybind11

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pyo3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python_version }}

- name: Checkout PyO3
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
repository: PyO3/pyo3
path: pyo3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pytest-html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ jobs:
run : git config --global core.autocrlf false

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.2
with:
node-version: '16.x'
node-version: '20.x'

- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
repository: pytest-dev/pytest-html
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix['python-version'] }}

Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/pythran.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
- [pypy-3.10-nightly, pypy10]
- [pypy-3.9-nightly, pypy39]
steps:
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python_version[0] }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 1
repository: serge-sans-paille/pythran
Expand Down Expand Up @@ -69,17 +69,16 @@ jobs:
matrix:
architectures: [x64]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5.0.0
with:
python-version: pypy-3.10-nightly
architecture: ${{ matrix.architecture }}
- name: Install clang-cl
run: |
choco install llvm --yes
@("C:/Program Files/LLVM/bin") + (Get-Content $env:GITHUB_PATH) | Set-Content $env:GITHUB_PATH
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 1
repository: serge-sans-paille/pythran
Expand Down

0 comments on commit 061cd63

Please sign in to comment.