Skip to content

Commit 32feea5

Browse files
Bump the github-actions group with 5 updates (#4065)
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/cache](https://github.com/actions/cache) | `4.2.0` | `4.2.2` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7.0.6` | `7.0.7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.0` | `4.6.1` | | [hendrikmuhs/ccache-action](https://github.com/hendrikmuhs/ccache-action) | `1.2.16` | `1.2.17` | | [ncipollo/release-action](https://github.com/ncipollo/release-action) | `1.15.0` | `1.16.0` | Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 54f1b92 commit 32feea5

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/RollPyTorch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
- name: Update PyTorch Build Cache (if running on main branch)
112112
if: github.ref_name == 'main'
113113
id: cache-pytorch
114-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
114+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
115115
with:
116116
path: ${{ github.workspace }}/build_tools/python_deploy/wheelhouse
117117
key: ${{ runner.os }}-pytorch-${{ env.PT_HASH }}
@@ -127,7 +127,7 @@ jobs:
127127
git pull origin main
128128
129129
- name: Create pull request
130-
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6
130+
uses: peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284 # v7.0.7
131131
with:
132132
author: Roll PyTorch Action <[email protected]>
133133
branch: rollpytorch

.github/workflows/bazelBuildAndTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# restore to avoid the cache going stale over time
4141
# https://github.com/actions/cache/blob/main/workarounds.md#update-a-cache
4242
- name: Setup cache for bazel
43-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
43+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
4444
with:
4545
path: ~/.cache/bazel
4646
key: torch_mlir-bazel-build-cache-${{ runner.os }}-${{ github.sha }}

.github/workflows/buildRelease.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
#
7676
# See https://github.com/pypa/gh-action-pypi-publish/discussions/15
7777
- name: Store the binary wheel
78-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
78+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
7979
with:
8080
name: wheels
8181
path: dist
@@ -143,7 +143,7 @@ jobs:
143143
#
144144
# See https://github.com/pypa/gh-action-pypi-publish/discussions/15
145145
- name: Store the binary wheel
146-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
146+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
147147
with:
148148
name: wheels
149149
path: dist
@@ -203,7 +203,7 @@ jobs:
203203
#
204204
# See https://github.com/pypa/gh-action-pypi-publish/discussions/15
205205
- name: Store the binary wheel
206-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
206+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
207207
with:
208208
name: wheels
209209
path: dist
@@ -267,7 +267,7 @@ jobs:
267267
#
268268
# See https://github.com/pypa/gh-action-pypi-publish/discussions/15
269269
- name: Store the binary wheel
270-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
270+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
271271
with:
272272
name: wheels
273273
path: dist

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
submodules: true
3434

3535
- name: Enable cache
36-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
36+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
3737
with:
3838
path: ${{ env.CACHE_DIR }}
3939
key: build-test-cpp-asserts-manylinux-${{ matrix.torch-version }}-v2-${{ github.sha }}
@@ -54,7 +54,7 @@ jobs:
5454
bash build_tools/ci/install_python_deps.sh ${{ matrix.torch-version }}
5555
5656
- name: ccache
57-
uses: hendrikmuhs/ccache-action@53911442209d5c18de8a31615e0923161e435875 # v1.2.16
57+
uses: hendrikmuhs/ccache-action@a1209f81afb8c005c13b4296c32e363431bffea5 # v1.2.17
5858
with:
5959
key: ${{ github.job }}-${{ matrix.torch-version }}
6060
save: ${{ needs.setup.outputs.write-caches == 1 }}
@@ -65,7 +65,7 @@ jobs:
6565
bash build_tools/ci/build_posix.sh
6666
6767
- name: Save cache
68-
uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
68+
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
6969
if: ${{ !cancelled() }}
7070
with:
7171
path: ${{ env.CACHE_DIR }}

.github/workflows/oneshotSnapshotPackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Create Release
4545
id: create_release
46-
uses: ncipollo/release-action@cdcc88a9acf3ca41c16c37bb7d21b9ad48560d87 # v1.15.0
46+
uses: ncipollo/release-action@440c8c1cb0ed28b9f43e4d1d670870f059653174 # v1.16.0
4747
with:
4848
tag: ${{ env.tag_name }}
4949
name: torch-mlir snapshot ${{ env.tag_name }}

.github/workflows/releaseSnapshotPackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Create Release
4848
id: create_release
49-
uses: ncipollo/release-action@cdcc88a9acf3ca41c16c37bb7d21b9ad48560d87 # v1.15.0
49+
uses: ncipollo/release-action@440c8c1cb0ed28b9f43e4d1d670870f059653174 # v1.16.0
5050
with:
5151
tag: ${{ env.tag_name }}
5252
name: torch-mlir snapshot ${{ env.tag_name }}

0 commit comments

Comments
 (0)