diff --git a/.github/workflows/build-test-publish-images.yml b/.github/workflows/build-test-publish-images.yml index 1d3bf902..0d0d0e45 100644 --- a/.github/workflows/build-test-publish-images.yml +++ b/.github/workflows/build-test-publish-images.yml @@ -146,7 +146,7 @@ jobs: matrix: ${{ fromJSON(needs.compute-matrix.outputs.MATRIX) }} fail-fast: false secrets: inherit # zizmor: ignore[secrets-inherit] - uses: ./.github/workflows/build-rapids-image.yml + uses: $/.github/workflows/build-rapids-image.yml # Referencing something from the 'matrix' context prevents GitHub auto-generating # a hard-to-read name with all the matrix input values. # @@ -180,7 +180,7 @@ jobs: matrix: ${{ fromJSON(needs.compute-matrix.outputs.MATRIX) }} fail-fast: false secrets: inherit # zizmor: ignore[secrets-inherit] - uses: ./.github/workflows/build-cuvs-image.yml + uses: $/.github/workflows/build-cuvs-image.yml # Referencing something from the 'matrix' context prevents GitHub auto-generating # a hard-to-read name with all the matrix input values. # @@ -279,7 +279,7 @@ jobs: matrix: ${{ fromJSON(needs.compute-matrix.outputs.TEST_MATRIX) }} fail-fast: false secrets: inherit # zizmor: ignore[secrets-inherit] - uses: ./.github/workflows/validate.yml + uses: $/.github/workflows/validate.yml # Referencing something from the 'matrix' context prevents GitHub auto-generating # a hard-to-read name with all the matrix input values. # @@ -316,7 +316,7 @@ jobs: matrix: ${{ fromJSON(needs.compute-matrix.outputs.TEST_MATRIX) }} fail-fast: false secrets: inherit # zizmor: ignore[secrets-inherit] - uses: ./.github/workflows/test-notebooks.yml + uses: $/.github/workflows/test-notebooks.yml # Referencing something from the 'matrix' context prevents GitHub auto-generating # a hard-to-read name with all the matrix input values. # diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 14dbe3b3..7ac129d0 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -85,7 +85,7 @@ jobs: id-token: write packages: read pull-requests: read - uses: ./.github/workflows/build-test-publish-images.yml + uses: $/.github/workflows/build-test-publish-images.yml with: build_type: pull-request run_tests: true diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0a211e7e..0d7bfa50 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2023-2025, NVIDIA CORPORATION. +# Copyright (c) 2023-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. name: publish on: @@ -27,7 +27,7 @@ jobs: id-token: write packages: read pull-requests: read - uses: ./.github/workflows/build-test-publish-images.yml + uses: $/.github/workflows/build-test-publish-images.yml with: build_type: branch run_tests: ${{ inputs.run_tests || false }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cd152c84..bfdc942a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2025, NVIDIA CORPORATION. +# Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. --- ci: autoupdate_schedule: 'monthly' @@ -9,17 +9,17 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.16.1 + rev: v0.16.6 hooks: - id: ruff args: ["--config", "pyproject.toml"] - repo: https://github.com/shellcheck-py/shellcheck-py - rev: v0.11.0.1 + rev: v0.11.0.1-1 hooks: - id: shellcheck args: ["--severity=warning", "--external-sources"] - repo: https://github.com/zizmorcore/zizmor-pre-commit - rev: v1.29.0 + rev: v1.30.0 hooks: - id: zizmor - repo: https://github.com/rapidsai/pre-commit-hooks