Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Actions to Node 20 versions #259

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test-gnofract4d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
PYTHON: ${{ matrix.python }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install macOS packages
if: ${{ runner.os == 'macOS' }}
run: brew install gtk4 ninja pygobject3
Expand All @@ -45,7 +45,7 @@ jobs:
sudo apt update
sudo apt install dbus-x11 gir1.2-gtk-4.0 gvfs libgirepository1.0-dev libxml2-utils ninja-build xvfb
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other PyPI packages
Expand All @@ -61,7 +61,7 @@ jobs:
if: ${{ runner.os == 'Linux' }}
run: xvfb-run --auto-servernum tox -e ${{ matrix.toxenv }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
env_vars: OS,PYTHON
Expand All @@ -76,7 +76,7 @@ jobs:
- pylint

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Ubuntu packages
# libglib2.0-dev-bin provides glib-compile-resources
run: |
Expand Down