Skip to content

Commit

Permalink
Bump the actions group with 6 updates (#31)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Eric Larson <larson.eric.d@gmail.com>
  • Loading branch information
dependabot[bot] and larsoner authored Nov 6, 2024
1 parent 8e16fbf commit 2ae62bf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ jobs:
- ~/mne_data/MNE-misc-data

deploy:
machine:
image: ubuntu-2004:202111-01
docker:
- image: cimg/base:current-22.04
steps:
- attach_workspace:
at: /tmp/build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Check env vars
run: |
echo "Triggered by: ${{ github.event_name }}"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'release'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
mne-version: mne-main
qt: PySide6
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: pyvista/setup-headless-display-action@main
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
working-directory: mne-python
shell: bash
name: 'Get testing version'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
key: ${{ env.TESTING_VERSION }}
path: ~/mne_data
Expand All @@ -79,6 +79,9 @@ jobs:
shell: bash
working-directory: mne-python
- name: Run pytest
run: pytest mne_gui_addons
run: pytest mne_gui_addons --cov-report=xml
- name: Upload coverage stats to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ebcd818a-7a71-470d-b667-7cd9c3003c7d
if: success() || failure()

0 comments on commit 2ae62bf

Please sign in to comment.