Skip to content

Commit

Permalink
[CI] upgrade deps version (#2180)
Browse files Browse the repository at this point in the history
  • Loading branch information
Qing Lan authored Jul 16, 2024
1 parent 5af9069 commit a792f09
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build with Gradle
run: ./gradlew --refresh-dependencies build :jacoco:testCodeCoverageReport --stacktrace
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: serving-${{ matrix.os }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-nightly-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
$AGENT_TOOLSDIRECTORY
- uses: actions/checkout@v4
- name: Login to Docker
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
run: |
yes | docker system prune -a --volumes
- name: Login to Docker
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
run: |
yes | docker system prune -a --volumes
- name: Login to Docker
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
docker rm -f $(docker ps -aq) || true
- name: Upload test logs
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-${{ matrix.test.test }}-logs
path: tests/integration/all_logs/
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
run: |
cat logs/results.log
- name: Upload test logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: transformers-neuronx-${{ matrix.arch }}-logs
path: engines/python/setup/logs/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_execute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
docker rm -f $(docker ps -aq) || true
- name: Upload test logs
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-${{ inputs.test }}-logs
path: tests/integration/all_logs/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/llm_integration_p4d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
./remove_container.sh || true
cat logs/serving.log
- name: Upload test logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lmi-dist-aiccl-logs
path: tests/integration/logs/
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
./remove_container.sh || true
cat logs/serving.log
- name: Upload test logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: trtllm-logs
path: tests/integration/logs/
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
./remove_container.sh || true
cat logs/serving.log
- name: Upload test logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vllm-logs
path: tests/integration/logs/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lmi-no-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
./remove_container.sh || true
cat logs/serving.log
- name: Upload test logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: no-code-p4d-${{ matrix.container }}-logs
path: tests/integration/logs/
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
run: |
cat logs/serving.log
- name: Upload test logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: no-code-${{ matrix.machine }}-${{ matrix.container }}-logs
path: tests/integration/logs/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-max-num-tokens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
python3 llm/run_max_num_tokens.py "${{ inputs.running_template }}"
- name: Upload test logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: tests/integration/max_num_token_results/

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/text_embedding_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
cat logs/serving.log
- name: Upload test logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: gpu-logs
path: tests/integration/logs/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trtllm-deps-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: |
./build_artifacts.sh ${{ inputs.trtllm_branch }} ${{ inputs.release_tag }} ${{ inputs.python_version }}
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: /tmp/binaries/tensorrtllm/
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Install dependencies
run: pip install awscli
- name: Download built-artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-artifacts
path: tensorrtllm
Expand Down

0 comments on commit a792f09

Please sign in to comment.