Skip to content

Commit 9720619

Browse files
chore(deps): update github actions
1 parent 6ff57be commit 9720619

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/integration-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
mkdir lockfiles
7474
mv conda-$CONDA_PLATFORM.lock conda-$CONDA_PLATFORM.lock.yml conda-lock.yml lockfiles
7575
- name: Upload lockfiles
76-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
76+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
7777
with:
7878
name: conda-lock-${{ matrix.os }}-${{ matrix.python-version }}
7979
path: lockfiles
@@ -108,7 +108,7 @@ jobs:
108108
# micromamba-url: https://github.com/mamba-org/micromamba-releases/releases/download/${{ env.MICROMAMBA_VERSION }}/micromamba-${{ env.CONDA_PLATFORM }}
109109
init-shell: bash
110110
- name: Download lockfiles
111-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
111+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
112112
with:
113113
name: conda-lock-${{ matrix.os }}-${{ matrix.python-version }}
114114
path: lockfiles
@@ -149,7 +149,7 @@ jobs:
149149
pip install pipx
150150
pipx install -e .
151151
- name: Download lockfiles
152-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
152+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
153153
with:
154154
name: conda-lock-${{ matrix.os }}-${{ matrix.python-version }}
155155
path: lockfiles
@@ -189,7 +189,7 @@ jobs:
189189
auto-activate-base: true
190190
python-version: ${{ matrix.python-version }}
191191
- name: Download lockfiles
192-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
192+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
193193
with:
194194
name: conda-lock-${{ matrix.os }}-${{ matrix.python-version }}
195195
path: lockfiles

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
shell: bash
4444

4545
- name: Upload dist files for publication
46-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
46+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
4747
with:
4848
name: dist-files
4949
path: dist
@@ -59,7 +59,7 @@ jobs:
5959
id-token: write # for trusted publishing to PyPI
6060
actions: read # for downloading artifacts
6161
steps:
62-
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
62+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
6363
with:
6464
name: dist-files
6565
path: dist

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
--splits="${{ matrix.pytest-split-group-size }}" \
151151
--group="${{ matrix.pytest-split-group-index }}"
152152
153-
- uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
153+
- uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
154154
with:
155155
token: ${{ secrets.CODECOV_TOKEN }}
156156

@@ -160,7 +160,7 @@ jobs:
160160
cat tests/durations/${{ matrix.os }}-py${{ matrix.python-version }}.json
161161
162162
- name: Store test durations
163-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
163+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
164164
with:
165165
name: test-durations-${{ matrix.os }}-py${{ matrix.python-version }}-${{ matrix.pytest-split-group-index }}
166166
path: tests/durations/${{ matrix.os }}-py${{ matrix.python-version }}.json
@@ -174,7 +174,7 @@ jobs:
174174
actions: write # for downloading and uploading artifacts
175175
steps:
176176
- name: Download test durations
177-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
177+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
178178
# All the artifacts are downloaded into various subdirectories.
179179
# For each filename that occurs, we need to find all the files in the
180180
# subdirectories with the same name, group those, and merge them.
@@ -191,7 +191,7 @@ jobs:
191191
jq -s 'add | to_entries | sort_by(.key) | from_entries' $(find . -type f -name "$filename") > "aggregated/$filename"
192192
done < temp/filenames.txt
193193
- name: Upload aggregated test durations
194-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
194+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
195195
with:
196196
name: aggregated-test-durations
197197
path: aggregated

.github/workflows/typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
# Upload logs
8383
- name: Upload pre-commit log
8484
if: always()
85-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
85+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
8686
with:
8787
name: pre-commit-${{ matrix.name }}.log
8888
path: /home/runner/.cache/pre-commit/pre-commit.log

.github/workflows/update-lockfile.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
--lockfile=environments/conda-lock-python-${PYTHON_VERSION}.yaml
5252
5353
- name: Upload lockfile
54-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
54+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
5555
with:
5656
name: conda-lock-python-${{ matrix.python-version }}
5757
path: environments/conda-lock-python-${{ matrix.python-version }}.yaml
@@ -69,7 +69,7 @@ jobs:
6969
persist-credentials: false
7070

7171
- name: Download all lockfiles
72-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
72+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
7373
with:
7474
path: environments/
7575

0 commit comments

Comments
 (0)