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

ENH: Bump Github actions versions #258

Merged
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
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
Loading