Skip to content

Commit aea6833

Browse files
author
Sharon Yu
committed
fix download artifact failure in pre-commit check
1 parent 910246e commit aea6833

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pypi_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
environment: release
113113
if: needs.build_maxtext_package.result == 'success' && (github.event_name == 'repository_dispatch' || inputs.publish)
114114
steps:
115-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce
115+
- uses: actions/download-artifact@v4
116116
with:
117117
name: maxtext-wheel
118118
path: dist/

.github/workflows/run_jupyter_notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
ref: ${{ inputs.maxtext_sha }}
6262
- name: Download the MaxText wheel
6363
if: ${{ !inputs.maxtext_installed }}
64-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
64+
uses: actions/download-artifact@v4
6565
with:
6666
name: maxtext-wheel
6767
- name: Install MaxText and Dependencies

.github/workflows/run_pathways_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
git fetch origin ${{ inputs.maxtext_sha }}
8888
git checkout FETCH_HEAD
8989
- name: Download the maxtext wheel
90-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
90+
uses: actions/download-artifact@v4
9191
with:
9292
name: maxtext-wheel
9393
- name: Install the maxtext wheel

.github/workflows/run_tests_against_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
fetch-depth: 0
109109
- name: Download the maxtext wheel
110110
if: ${{ !inputs.maxtext_installed }}
111-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
111+
uses: actions/download-artifact@v4
112112
with:
113113
name: maxtext-wheel
114114
- name: Install the maxtext wheel

0 commit comments

Comments
 (0)