Skip to content

Commit 57580f9

Browse files
committed
updated outdated actions in gh-ci and docs workflow
1 parent 94cd723 commit 57580f9

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727

2828
- name: "Setup Micromamba"
29-
uses: mamba-org/setup-micromamba@v2
29+
uses: mamba-org/setup-micromamba@v3
3030
with:
3131
environment-file: ci/environment.yaml
3232
environment-name: griddata_env
3333
create-args: >-
34-
python=3.11
34+
python=3.14
3535
init-shell: bash
3636

3737
- name: install package
@@ -43,7 +43,7 @@ jobs:
4343
cd doc && sphinx-build -b html source build
4444
4545
- name: deploy docs
46-
uses: peaceiris/actions-gh-pages@v3
46+
uses: peaceiris/actions-gh-pages@v4
4747
if: github.event_name != 'pull_request'
4848
with:
4949
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/gh-ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
python-version: "3.14"
3535

3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v6
3838

3939
- name: setup_micromamba
40-
uses: mamba-org/setup-micromamba@v2
40+
uses: mamba-org/setup-micromamba@v3
4141
with:
4242
environment-name: mda
4343
create-args: >-
@@ -67,10 +67,10 @@ jobs:
6767
pytest -v --cov=gridData --cov-report=xml --color=yes ./gridData/tests
6868
6969
- name: codecov
70-
uses: codecov/codecov-action@v4
70+
uses: codecov/codecov-action@v6
7171
if: github.event_name != 'schedule'
7272
with:
73-
file: coverage.xml
73+
files: coverage.xml
7474
fail_ci_if_error: True
7575
verbose: True
7676
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)