Skip to content

Commit 7a7812d

Browse files
committed
chore: update GitHub Actions to latest versions
1 parent febc1ca commit 7a7812d

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747
fi
4848
4949
- name: Check out Git repository
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v6
5151

5252
- name: Get week number
5353
run: echo "WEEK=$(date +'%V')" >> $GITHUB_ENV
5454

5555
- name: Set up Python ${{ matrix.python-version }}
56-
uses: mamba-org/setup-micromamba@v1
56+
uses: mamba-org/setup-micromamba@v2
5757
with:
5858
create-args: python=${{ matrix.python-version }}
5959
environment-file: environment-dev.yml
@@ -69,12 +69,12 @@ jobs:
6969
run: sphinx-build docs public -b dirhtml
7070

7171
- name: Setup Pages
72-
uses: actions/configure-pages@v2
72+
uses: actions/configure-pages@v5
7373
- name: Upload artifact
74-
uses: actions/upload-pages-artifact@v1
74+
uses: actions/upload-pages-artifact@v4
7575
with:
7676
# Upload generated html
7777
path: 'public/'
7878
- name: Deploy to GitHub Pages
7979
id: deployment
80-
uses: actions/deploy-pages@v1
80+
uses: actions/deploy-pages@v4

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Check out Git repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
ref: ${{ github.head_ref }}
2020

@@ -24,7 +24,7 @@ jobs:
2424
src: './superblockify ./tests ./examples'
2525
options: '--exclude "/(\.png|\.jpg|\.jpeg)/"'
2626

27-
- uses: stefanzweifel/git-auto-commit-action@v4
27+
- uses: stefanzweifel/git-auto-commit-action@v7
2828
with:
2929
commit_message: Fix code style issues with Black
3030
commit_user_name: ${{ github.actor }}
@@ -42,10 +42,10 @@ jobs:
4242

4343
steps:
4444
- name: Check out Git repository
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4646

4747
- name: Set up Python
48-
uses: actions/setup-python@v4
48+
uses: actions/setup-python@v6
4949
with:
5050
python-version: ${{ matrix.python-version }}
5151

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
name: Cache for ${{ matrix.python-version }} on ${{ matrix.os }}
3333
runs-on: ${{ matrix.os }}
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636

3737
- name: Get week number
3838
run: echo "WEEK=$(date +'%V')" >> $GITHUB_ENV
3939

4040
- name: Set up Python ${{ matrix.python-version }}
41-
uses: mamba-org/setup-micromamba@v1
41+
uses: mamba-org/setup-micromamba@v2
4242
with:
4343
create-args: python=${{ matrix.python-version }}
4444
environment-file: environment-dev.yml
@@ -75,13 +75,13 @@ jobs:
7575
shell: bash -el {0}
7676

7777
steps:
78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v6
7979

8080
- name: Get week number
8181
run: echo "WEEK=$(date +'%V')" >> $GITHUB_ENV
8282

8383
- name: Set up Python ${{ matrix.python-version }}
84-
uses: mamba-org/setup-micromamba@v1
84+
uses: mamba-org/setup-micromamba@v2
8585
with:
8686
create-args: python=${{ matrix.python-version }}
8787
environment-file: environment-dev.yml
@@ -105,7 +105,7 @@ jobs:
105105

106106
- name: Store coverage file
107107
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
108-
uses: actions/upload-artifact@v4
108+
uses: actions/upload-artifact@v7
109109
with:
110110
name: coverage-${{ matrix.submodule.name }}
111111
path: ".coverage.${{ matrix.submodule.name }}"
@@ -122,10 +122,10 @@ jobs:
122122

123123
steps:
124124
- name: Checkout
125-
uses: actions/checkout@v4
125+
uses: actions/checkout@v6
126126

127127
- name: Load coverages
128-
uses: actions/download-artifact@v4
128+
uses: actions/download-artifact@v8
129129
id: download
130130
with:
131131
path: coverage
@@ -139,6 +139,6 @@ jobs:
139139
run: coverage combine coverage/
140140

141141
- name: Upload coverage report to Codecov
142-
uses: codecov/codecov-action@v4
142+
uses: codecov/codecov-action@v5
143143
env:
144144
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)