Skip to content

Commit

Permalink
Merge pull request #247 from jhlegarreta/FixGitHubActionsNodejsWarning
Browse files Browse the repository at this point in the history
ENH: Fix `build, test` workflow actions warnings linked to `Node.js`
  • Loading branch information
jhlegarreta authored Feb 18, 2024
2 parents b868e60 + 1c04c88 commit 929bb24
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Cache Ubuntu dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
/var/lib/apt
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
sudo apt-get clean
- name: Cache ANTs install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /opt/ants
key: ants-v1
Expand All @@ -77,7 +77,7 @@ jobs:
fi
- name: Cache FSL install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: $FSLPATH
key: fsl-v2
Expand All @@ -86,7 +86,7 @@ jobs:
# Run with multiple Python versions
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -101,7 +101,7 @@ jobs:
fi
- name: Checkout GitHub repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies for headless display
run: |
Expand Down

0 comments on commit 929bb24

Please sign in to comment.