Skip to content

Commit

Permalink
Update CI action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jimporter committed Feb 27, 2024
1 parent bfc6fc1 commit f2be3a0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
CPPFLAGS: ${{ matrix.flags }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache Boost binaries
if: startsWith(matrix.os, 'windows-') && matrix.boost-version
uses: actions/cache@v3
Expand All @@ -112,7 +112,7 @@ jobs:
matrix.compiler }}-python-${{ matrix.python-version }}-${{
hashFiles('.github/workflows/build.yml') }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
python setup.py coverage -q
coverage xml
- name: Upload coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
build-cygwin:
Expand All @@ -247,7 +247,7 @@ jobs:
CYGCACHE: C:\cygwin\var\cache\setup

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Cygwin
shell: cmd
run: >
Expand All @@ -274,16 +274,16 @@ jobs:
run: |
copy C:\cygwin\home\runneradmin\bfg9000\coverage.xml .
- name: Upload coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
bdist-wheel:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Test bdist_wheel
Expand All @@ -296,9 +296,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
Expand Down

0 comments on commit f2be3a0

Please sign in to comment.