@@ -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