Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
name: Autoupdate changelog entry and headers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- uses: actions/setup-python@v6
- uses: actions/setup-python@v6.2.0
with:
python-version: '3.12'
- run: pip install --upgrade towncrier pygithub gitpython numpy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autopush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
persist-credentials: true
token: ${{ secrets.MNE_BOT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Check towncrier entry in doc/changes/dev/
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- uses: scientific-python/action-towncrier-changelog@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.0
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/credit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
GH_TOKEN: ${{ secrets.MNE_BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.MNE_BOT_TOKEN }}
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
persist-credentials: true
- uses: actions/setup-python@v6
- uses: actions/setup-python@v6.2.0
with:
python-version: '3.12'
- run: pip install pygithub -e .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- uses: actions/setup-python@v6
- uses: actions/setup-python@v6.2.0
with:
python-version: '3.10'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spec_zero.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
persist-credentials: true
- name: Triage SSH
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- uses: actions/setup-python@v6
- uses: actions/setup-python@v6.2.0
with:
python-version: '3.14'
- uses: pre-commit/action@v3.0.1
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
python: '3.14t' # free-threaded
kind: pip-ft
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@v7.0.0
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -118,7 +118,7 @@ jobs:
pyvista: false
wm: false
# Python (if pip)
- uses: actions/setup-python@v6
- uses: actions/setup-python@v6.2.0
with:
python-version: ${{ matrix.python }}
if: startswith(matrix.kind, 'pip') || matrix.kind == 'minimal'
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
- run: python ./tools/github_actions_check_old_env.py
if: matrix.kind == 'old'
# Minimal commands on Linux (macOS stalls)
- uses: actions/cache@v5
- uses: actions/cache@v5.0.5
with:
key: minimal-commands-1
path: ~/minimal_cmds
Expand All @@ -167,7 +167,7 @@ jobs:
run: MNE_SKIP_TESTING_DATASET_TESTS=true pytest -m "not (ultraslowtest or pgtest)" --tb=short --cov=mne --cov-report xml -vv -rfE mne/
if: matrix.kind == 'minimal'
- run: ./tools/get_testing_version.sh
- uses: actions/cache@v5
- uses: actions/cache@v5.0.5
with:
key: ${{ env.TESTING_VERSION }}
path: ~/mne_data
Expand Down
Loading