Skip to content

Commit

Permalink
Update GitHub actions
Browse files Browse the repository at this point in the history
Tests are failing as GitHub has starting phasing out Node 16.
  • Loading branch information
mfasi committed Apr 30, 2024
1 parent 7dabbe1 commit 3a48920
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
- uses: actions/checkout@master

- name: Install and Build
Expand All @@ -15,7 +15,7 @@ jobs:
make docs
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.2.5
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/html
2 changes: 1 addition & 1 deletion .github/workflows/run_c_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install check library
run: |
sudo apt update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_octave_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Octave and corresponding packages and libraries
run: |
sudo apt update
Expand Down

0 comments on commit 3a48920

Please sign in to comment.