@@ -45,16 +45,16 @@ jobs:
4545 env :
4646 PIP_CACHE_DIR : " ${{ github.workspace }}/.pip-cache"
4747 steps :
48- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
48+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4949
5050 - name : " Setting up Python"
5151 id : setup_python
52- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
52+ uses : actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1 .0
5353 with :
5454 python-version : ${{matrix.python-version}}
5555
5656 - name : Cache Pip Packages
57- uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
57+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5858 id : cache-pip
5959 with :
6060 path : ${{ env.PIP_CACHE_DIR }}
@@ -90,15 +90,15 @@ jobs:
9090
9191 - name : Upload coverage data
9292 if : runner.os != 'Windows'
93- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
93+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
9494 with :
9595 name : coverage-data-${{ matrix.python-version }}-${{ matrix.torch-version }}-${{ matrix.runs-on }}
9696 path : .coverage.${{ matrix.python-version }}.${{ matrix.torch-version }}.${{ matrix.runs-on }}
9797 include-hidden-files : true
9898
9999 - name : Upload coverage to Codecov
100100 if : ${{ github.event_name == 'pull_request' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
101- uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
101+ uses : codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
102102 with :
103103 files : cov.xml
104104
@@ -112,25 +112,25 @@ jobs:
112112 contents : write
113113 actions : read
114114 steps :
115- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
115+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
116116
117- - uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
117+ - uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
118118 id : download
119119 with :
120120 pattern : coverage-*
121121 merge-multiple : true
122122
123123 - name : Coverage comment
124124 id : coverage_comment
125- uses : py-cov-action/python-coverage-comment-action@91910686861e4e1d8282a267a896eb39d46240fb # v3.35
125+ uses : py-cov-action/python-coverage-comment-action@e623398c19eb3853a5572d4a516e10b15b5cefbc # v3.39
126126 with :
127127 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
128128 MERGE_COVERAGE_FILES : true
129129 MINIMUM_GREEN : 90
130130 MINIMUM_ORANGE : 70
131131
132132 - name : Store Pull Request comment to be posted
133- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
133+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
134134 if : steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
135135 with :
136136 name : python-coverage-comment-action
@@ -153,16 +153,16 @@ jobs:
153153 env :
154154 PIP_CACHE_DIR : " ${{ github.workspace }}/.pip-cache"
155155 steps :
156- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
156+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
157157
158158 - name : " Setting up Python"
159159 id : setup_python
160- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
160+ uses : actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1 .0
161161 with :
162162 python-version : ${{matrix.python-version}}
163163
164164 - name : Cache Pip Packages
165- uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
165+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
166166 id : cache-pip
167167 with :
168168 path : ${{ env.PIP_CACHE_DIR }}
@@ -205,11 +205,11 @@ jobs:
205205 HF_HOME : " /amdshark-cache/data/huggingface"
206206 HF_TOKEN : ${{ secrets.HF_FLUX_TOKEN }}
207207 steps :
208- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
208+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
209209
210210 - name : " Setting up Python"
211211 id : setup_python
212- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
212+ uses : actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1 .0
213213 with :
214214 python-version : ${{matrix.python-version}}
215215
@@ -254,16 +254,16 @@ jobs:
254254 env :
255255 PIP_CACHE_DIR : " ${{ github.workspace }}/.pip-cache"
256256 steps :
257- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
257+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
258258
259259 - name : " Setting up Python"
260260 id : setup_python
261- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
261+ uses : actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1 .0
262262 with :
263263 python-version : ${{matrix.python-version}}
264264
265265 - name : Cache Pip Packages
266- uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
266+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
267267 id : cache-pip
268268 with :
269269 path : ${{ env.PIP_CACHE_DIR }}
0 commit comments