Skip to content

fix(python-package): Deprecated v2 actions use Node (+1 more) - #88

Closed
andrewwhitecdw wants to merge 1 commit into
NVIDIA:mainfrom
andrewwhitecdw:bugfix/python-package-assorted-e920a30a
Closed

andrewwhitecdw wants to merge 1 commit into
NVIDIA:mainfrom
andrewwhitecdw:bugfix/python-package-assorted-e920a30a

Conversation

@andrewwhitecdw

@andrewwhitecdw andrewwhitecdw commented Jul 27, 2026

Copy link
Copy Markdown

This PR addresses 2 issues in .github/workflows/python-package.yml.

Fix 1

fix: Deprecated v2 actions use Node runtimes no longer supported

Fix: Replace:

    - uses: actions/checkout@v2
    - name: Set up Python ${{ matrix.python-version }}
      uses: actions/setup-python@v2
      with:
        python-version: ${{ matrix.python-version }}

with:

    - uses: actions/checkout@v4
    - name: Set up Python ${{ matrix.python-version }}
      uses: actions/setup-python@v5
      with:
        python-version: ${{ matrix.python-version }}

Fix 2

fix: Python 3.6 is unavailable on ubuntu-latest runners

Fix: Replace:

        python-version: [3.6, 3.7, 3.8, 3.9]

with:

        python-version: [3.7, 3.8, 3.9, '3.10']

Files changed

  • .github/workflows/python-package.yml

@andrewwhitecdw
andrewwhitecdw marked this pull request as ready for review July 28, 2026 00:34
@andrewwhitecdw

Copy link
Copy Markdown
Author

Closing this sweep-generated PR: sole commit is missing a valid Signed-off-by trailer. It does not meet the sweep requirements (single signed-off commit).

@andrewwhitecdw
andrewwhitecdw force-pushed the bugfix/python-package-assorted-e920a30a branch 3 times, most recently from 858b15a to fae97ef Compare August 24, 2026 18:16
Signed-off-by: Andrew White <andrewwhitecdw@users.noreply.github.com>
@andrewwhitecdw
andrewwhitecdw force-pushed the bugfix/python-package-assorted-e920a30a branch from fae97ef to 1f42c6f Compare August 24, 2026 18:18
@andrewwhitecdw

Copy link
Copy Markdown
Author

Closing this upstream PR — it was opened by automation without the required sweep-approved review and therefore does not comply with the sweep policy. A replacement fork-local PR is open at andrewwhitecdw#9 for review.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant