Skip to content

Commit

Permalink
bump versions in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishavlin committed Jun 27, 2024
1 parent 4914926 commit 2fb8e43
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install osmesa
run: |
sudo apt-get update && sudo apt-get upgrade
Expand All @@ -28,7 +28,7 @@ jobs:
env:
PYOPENGL_PLATFORM: osmesa
run: pytest --html=report.html --self-contained-html
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload pytest report
with:
name: pytest-report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install check-build dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-min-numpy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install osmesa
run: |
sudo apt-get update && sudo apt-get upgrade
Expand All @@ -28,7 +28,7 @@ jobs:
env:
PYOPENGL_PLATFORM: osmesa
run: pytest --html=report.html --self-contained-html
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
name: Upload pytest report
with:
name: pytest-report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Build and Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install pypa/build
Expand Down

0 comments on commit 2fb8e43

Please sign in to comment.