Skip to content

Commit da96b47

Browse files
Bump the github-actions group with 3 updates (#1018)
Bumps the github-actions group with 3 updates: [actions/download-artifact](https://github.com/actions/download-artifact), [actions/cache](https://github.com/actions/cache) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e8e7850 commit da96b47

5 files changed

+11
-11
lines changed

.github/workflows/build_packages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
submodules: false
134134

135135
- name: Download version_local.json files
136-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
136+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
137137
with:
138138
name: version_local_files
139139
path: ./c/
@@ -148,7 +148,7 @@ jobs:
148148
echo "SHORTFIN_ENABLE_TRACING=OFF" >> $GITHUB_ENV
149149
- name: Setup cache
150150
if: ${{ inputs.build_type == 'dev' }}
151-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
151+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
152152
with:
153153
path: ${{ env.CACHE_DIR }}
154154
key: build-packages-${{ matrix.package }}-${{ matrix.platform }}-${{ matrix.python-version }}-v1-${{ github.sha }}

.github/workflows/ci-sglang-benchmark.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -213,14 +213,14 @@ jobs:
213213
run: pip install pytest-html-merger
214214

215215
- name: Download shortfin report
216-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
216+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
217217
with:
218218
name: shortfin_benchmark
219219
path: reports
220220
continue-on-error: true
221221

222222
- name: Download sglang report
223-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
223+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
224224
with:
225225
name: sglang_benchmark
226226
path: reports

.github/workflows/ci-sharktank.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
python-version: ${{matrix.python-version}}
5858

5959
- name: Cache Pip Packages
60-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
60+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
6161
id: cache-pip
6262
with:
6363
path: ${{ env.PIP_CACHE_DIR }}
@@ -169,7 +169,7 @@ jobs:
169169
python-version: 3.11
170170

171171
- name: Cache Pip Packages
172-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
172+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
173173
id: cache-pip
174174
with:
175175
path: ${{ env.PIP_CACHE_DIR }}

.github/workflows/ci_linux_x64_asan-libshortfin.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
- name: Cache Python ASan
5252
id: cache-python-asan
53-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
53+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
5454
with:
5555
path: ${{ env.PYENV_ROOT }}
5656
key: ${{ runner.os }}-python-asan-${{ env.PYENV_REF }}-${{ env.PYTHON_VER }}-v${{ env.CACHE_ASAN_VER }}
@@ -101,15 +101,15 @@ jobs:
101101
102102
- name: Restore Python dependencies cache
103103
id: cache-python-deps-restore
104-
uses: actions/cache/restore@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
104+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
105105
with:
106106
path: ${{ env.PYENV_ROOT }}
107107
key: ${{ runner.os }}-python-deps-${{ hashFiles('shortfin/requirements-tests.txt', 'requirements-iree-pinned.txt') }}-v${{ env.CACHE_DEPS_VER }}
108108

109109
- name: Restore Python ASan cache
110110
id: cache-python-asan
111111
if: steps.cache-python-deps-restore.outputs.cache-hit != 'true'
112-
uses: actions/cache/restore@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
112+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
113113
with:
114114
path: ${{ env.PYENV_ROOT }}
115115
key: ${{ runner.os }}-python-asan-${{ env.PYENV_REF }}-${{ env.PYTHON_VER }}-v${{ env.CACHE_ASAN_VER }}
@@ -130,7 +130,7 @@ jobs:
130130
- name: Save Python dependencies cache
131131
if: steps.cache-python-deps-restore.outputs.cache-hit != 'true'
132132
id: cache-python-deps-save
133-
uses: actions/cache/save@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
133+
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
134134
with:
135135
path: ${{ env.PYENV_ROOT }}
136136
key: ${{ steps.cache-python-deps-restore.outputs.cache-primary-key }}

.github/workflows/update_iree_requirement_pins.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Update IREE requirement pins
7979
run: build_tools/update_iree_requirement_pins.py
8080

81-
- uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1.11.5
81+
- uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1.11.6
8282
if: ${{ env.CREATE_PULL_REQUEST_TOKEN_APP_ID != '' && env.CREATE_PULL_REQUEST_TOKEN_APP_PRIVATE_KEY != '' }}
8383
id: generate-token
8484
with:

0 commit comments

Comments
 (0)