Skip to content

Commit 0d068f9

Browse files
chore(ci): bump the github-actions group with 3 updates (#1958)
1 parent 1144f36 commit 0d068f9

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/python-release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# pip install dist/${{ env.PACKAGE_NAME }}-*.tar.gz --force-reinstall
5454
# python -c "import rattler_build; print(rattler_build.rattler_build_version())"
5555
- name: "Upload sdist"
56-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
56+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
5757
with:
5858
name: sdist
5959
path: py-rattler-build/dist
@@ -94,7 +94,7 @@ jobs:
9494
python -m pip install py-rattler-build/dist/${{ env.PACKAGE_NAME }}-*.whl --force-reinstall
9595
python -c "import rattler_build; print(rattler_build.rattler_build_version())"
9696
- name: "Upload wheels"
97-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
97+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
9898
with:
9999
name: windows-wheels-${{ matrix.platform.target }}
100100
path: py-rattler-build/dist
@@ -129,7 +129,7 @@ jobs:
129129
pip install py-rattler-build/dist/${{ env.PACKAGE_NAME }}-*.whl --force-reinstall
130130
python -c "import rattler_build; print(rattler_build.rattler_build_version())"
131131
- name: "Upload wheels"
132-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
132+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
133133
with:
134134
name: linux-wheels-${{ matrix.target }}
135135
path: py-rattler-build/dist
@@ -175,7 +175,7 @@ jobs:
175175
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links py-rattler-build/dist/ --force-reinstall
176176
python3 -c "import rattler_build; print(rattler_build.rattler_build_version())"
177177
- name: "Upload wheels"
178-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
178+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
179179
with:
180180
name: linux-wheels-${{ matrix.platform.target }}
181181
path: py-rattler-build/dist
@@ -224,7 +224,7 @@ jobs:
224224
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links /io/py-rattler-build/dist/ --force-reinstall --break-system-packages
225225
python3 -c "import rattler_build; print(rattler_build.rattler_build_version())"
226226
- name: "Upload wheels"
227-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
227+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
228228
with:
229229
name: linux-wheels-${{ matrix.target }}
230230
path: py-rattler-build/dist
@@ -267,7 +267,7 @@ jobs:
267267
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links py-rattler-build/dist/ --force-reinstall --break-system-packages
268268
python3 -c "import rattler_build; print(rattler_build.rattler_build_version())"
269269
- name: "Upload wheels"
270-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
270+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
271271
with:
272272
name: linux-wheels-${{ matrix.platform.target }}
273273
path: py-rattler-build/dist
@@ -294,7 +294,7 @@ jobs:
294294
pip install py-rattler-build/dist/${{ env.PACKAGE_NAME }}-*.whl --force-reinstall
295295
python -c "import rattler_build; print(rattler_build.rattler_build_version())"
296296
- name: "Upload wheels"
297-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
297+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
298298
with:
299299
name: macos-wheels-x86_64
300300
path: py-rattler-build/dist
@@ -320,7 +320,7 @@ jobs:
320320
pip install py-rattler-build/dist/${{ env.PACKAGE_NAME }}-*universal2.whl --force-reinstall
321321
python -c "import rattler_build; print(rattler_build.rattler_build_version())"
322322
- name: "Upload wheels"
323-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
323+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
324324
with:
325325
name: macos-wheels-universal2
326326
path: py-rattler-build/dist
@@ -379,7 +379,7 @@ jobs:
379379
# For pypi trusted publishing
380380
id-token: write
381381
steps:
382-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v4
382+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v4
383383
with:
384384
merge-multiple: true
385385
path: wheels

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155

156156
- name: Install cross
157157
if: matrix.use-cross
158-
uses: taiki-e/install-action@e43a5023a747770bfcb71ae048541a681714b951 # v2
158+
uses: taiki-e/install-action@c5b1b6f479c32f356cc6f4ba672a47f63853b13b # v2
159159
with:
160160
tool: cross
161161

@@ -237,7 +237,7 @@ jobs:
237237
echo "binary-path=binaries/rattler-build-${{ matrix.target }}${{ contains(matrix.target, 'pc-windows') && '.exe' || '' }}" >> $GITHUB_OUTPUT
238238
239239
- name: Upload artifact
240-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
240+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4
241241
with:
242242
name: ${{ steps.package.outputs.pkg-name }}
243243
path: ${{ steps.package.outputs.pkg-path }}
@@ -293,7 +293,7 @@ jobs:
293293
submodules: recursive
294294

295295
- name: Download rattler-build artifact
296-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v4
296+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v4
297297
with:
298298
name: rattler-build-x86_64-unknown-linux-musl.tar.gz
299299
path: ./

0 commit comments

Comments
 (0)