File tree Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Original file line number Diff line number Diff 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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
114+ uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
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@dd2324fc52d5d43c699a5636bcf19fceaa70c284 # v7.0.7
130+ uses : peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
131131 with :
132132 author :
Roll PyTorch Action <[email protected] > 133133 branch : rollpytorch
Original file line number Diff line number Diff line change 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@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
43+ uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4444 with :
4545 path : ~/.cache/bazel
4646 key : torch_mlir-bazel-build-cache-${{ runner.os }}-${{ github.sha }}
Original file line number Diff line number Diff line change 7575 #
7676 # See https://github.com/pypa/gh-action-pypi-publish/discussions/15
7777 - name : Store the binary wheel
78- uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
78+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
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@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
146+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
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@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
206+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
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@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
270+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
271271 with :
272272 name : wheels
273273 path : dist
Original file line number Diff line number Diff line change 3333 submodules : true
3434
3535 - name : Enable cache
36- uses : actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
36+ uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
3737 with :
3838 path : ${{ env.CACHE_DIR }}
3939 key : build-test-cpp-asserts-manylinux-${{ matrix.torch-version }}-v2-${{ github.sha }}
6565 bash build_tools/ci/build_posix.sh
6666
6767 - name : Save cache
68- uses : actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
68+ uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
6969 if : ${{ !cancelled() }}
7070 with :
7171 path : ${{ env.CACHE_DIR }}
Original file line number Diff line number Diff line change 3838 uses : ./.github/actions/setup-build
3939
4040 - name : Enable cache
41- uses : actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
41+ uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4242 with :
4343 path : ${{ env.CACHE_DIR }}
4444 # Use as cache key a PR number if a pull request and otherwise the commit hash. This reuses the cache for a PR irrespective of the commit hash. Otherwise, it uses commit hash for merges into the main branch
5454 ./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 }}
6565 ./build_tools/python_deploy/build_windows_ci.sh
6666
6767 - name : Save cache
68- uses : actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
68+ uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
6969 if : ${{ !cancelled() }}
7070 with :
7171 path : ${{ env.CACHE_DIR }}
Original file line number Diff line number Diff line change 99 runs-on : ubuntu-22.04
1010 steps :
1111 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
12- - uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4 .0
12+ - uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5 .0
1313 - uses : pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
1414 with :
1515 extra_args : --color=always --all-files
Original file line number Diff line number Diff line change 1111 with :
1212 # requites to grab the history of the PR
1313 fetch-depth : 0
14- - uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4 .0
14+ - uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5 .0
1515 - uses : pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
1616 with :
1717 extra_args : --color=always --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }}
You can’t perform that action at this time.
0 commit comments