Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.ref || github.ref }}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
if: ${{ inputs.github_vm == false }}
steps:
- name: Checkout Codes
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.repo }}
ref: ${{ env.ref }}
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
- /home/ci/models/pyenv:/opt/pyenv
steps:
- name: Checkout Codes
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.repo }}
ref: ${{ env.ref }}
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
fi

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
continue-on-error: ${{ env.UPLOADED == '1' }}
with:
overwrite: true
Expand All @@ -453,7 +453,7 @@ jobs:
RELEASE_MODE: 0
steps:
- name: Checkout Codes
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.repo }}
ref: ${{ env.ref }}
Expand Down Expand Up @@ -491,7 +491,7 @@ jobs:
fi

- name: Upload to artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
continue-on-error: ${{ env.UPLOADED == '1' }}
with:
name: ${{ env.WHL_NAME }}
Expand Down Expand Up @@ -546,7 +546,7 @@ jobs:
if: ${{ inputs.github_vm == true }}
steps:
- name: Checkout Codes
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.repo }}
ref: ${{ env.ref }}
Expand All @@ -560,7 +560,7 @@ jobs:
git fetch origin pull/${PR_NUMBER}/head:pr-${PR_NUMBER}
git checkout pr-${PR_NUMBER}

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: 3.13
cache: 'pip'
Expand All @@ -582,7 +582,7 @@ jobs:
twine check dist/$whl

- name: Upload to artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.WHL_NAME }}
path: dist/${{ env.WHL_NAME }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:

steps:
- name: Checkout Codes
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.repo }}
ref: ${{ env.ref }}
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:

steps:
- name: Checkout Codes
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.repo }}
ref: ${{ env.ref }}
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
run: curl -s -F "runid=${{ github.run_id }}" -F "repo=${{ env.repo }}" -F "ref=${{ env.ref }}" -F "sha256=${{ env.SOURCE_HASH }}" -F "file=@dist/gptqmodel_source.tar.gz" http://$RUNNER/gpu/whl/upload

- name: Upload source to github artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: source
path: dist/gptqmodel_source.tar.gz
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:

- name: Upload wheel to github artifact
if: github.event.inputs.artifact_id == '' && !cancelled()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: whl
path: dist/${{ env.WHL_NAME }}
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
if: always() && !cancelled() && (needs.build.result == 'success' || github.event.inputs.artifact_id != '') && needs.list-test-files.outputs.torch-files != '[]'
steps:
- name: Checkout Codes
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.repo }}
ref: ${{ env.ref }}
Expand Down Expand Up @@ -407,7 +407,7 @@ jobs:

# - name: Download source from github
# if: env.SOURCE_DOWNLOADED == '' && !cancelled()
# uses: actions/download-artifact@v5
# uses: actions/download-artifact@v6
# with:
# name: source
# path: dist
Expand Down Expand Up @@ -439,7 +439,7 @@ jobs:

- name: Download artifact from github
if: env.WHL_DOWNLOADED == '' && !cancelled()
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: whl
path: dist
Expand Down Expand Up @@ -616,7 +616,7 @@ jobs:
ls -ahl .

- name: Checkout Codes
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ env.repo }}
ref: ${{ env.ref }}
Expand Down