diff --git a/.github/actions/coverage/action.yml b/.github/actions/coverage/action.yml index cef0920..22c13a5 100644 --- a/.github/actions/coverage/action.yml +++ b/.github/actions/coverage/action.yml @@ -36,7 +36,7 @@ runs: using: "composite" steps: - name: Setting environment on ${{ inputs.os }} with python ${{ inputs.python-version }} and pytorch ${{ inputs.pytorch-version }} - uses: kornia/workflows/.github/actions/env@v1.12.0 + uses: kornia/workflows/.github/actions/env@v1.12.1 with: python-version: ${{ inputs.python-version }} pytorch-version: ${{ inputs.pytorch-version }} diff --git a/.github/actions/tests/action.yml b/.github/actions/tests/action.yml index 8a8b324..58d3d0b 100644 --- a/.github/actions/tests/action.yml +++ b/.github/actions/tests/action.yml @@ -33,7 +33,7 @@ runs: using: "composite" steps: - name: Setting environment on ${{ inputs.os }} with python ${{ inputs.python-version }} and pytorch ${{ inputs.pytorch-version }} - uses: kornia/workflows/.github/actions/env@v1.12.0 + uses: kornia/workflows/.github/actions/env@v1.12.1 with: python-version: ${{ inputs.python-version }} pytorch-version: ${{ inputs.pytorch-version }} diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 5583a4e..abf77f0 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -49,7 +49,7 @@ jobs: key: ${{ inputs.cache-key }} restore-keys: ${{ inputs.cache-restore-keys }} - - uses: kornia/workflows/.github/actions/coverage@v1.12.0 + - uses: kornia/workflows/.github/actions/coverage@v1.12.1 with: os: ${{ inputs.os }} python-version: ${{ inputs.python-version }} @@ -77,7 +77,7 @@ jobs: key: ${{ inputs.cache-key }} restore-keys: ${{ inputs.cache-restore-keys }} - - uses: kornia/workflows/.github/actions/coverage@v1.12.0 + - uses: kornia/workflows/.github/actions/coverage@v1.12.1 with: os: ${{ inputs.os }} python-version: ${{ inputs.python-version }} @@ -105,7 +105,7 @@ jobs: key: ${{ inputs.cache-key }} restore-keys: ${{ inputs.cache-restore-keys }} - - uses: kornia/workflows/.github/actions/coverage@v1.12.0 + - uses: kornia/workflows/.github/actions/coverage@v1.12.1 with: os: ${{ inputs.os }} python-version: ${{ inputs.python-version }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 866e0b7..389991c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -75,7 +75,7 @@ jobs: steps: - name: Setting environment on ${{ inputs.os }} with python ${{ matrix.python-version }} and pytorch ${{ matrix.pytorch-version }} - uses: kornia/workflows/.github/actions/env@v1.12.0 + uses: kornia/workflows/.github/actions/env@v1.12.1 with: python-version: ${{ matrix.python-version }} pytorch-version: ${{ matrix.pytorch-version }} diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 0cdac80..8aaebfb 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -66,7 +66,7 @@ jobs: steps: - name: Setting environment on ${{ inputs.os }} with python ${{ matrix.python-version }} and pytorch ${{ matrix.pytorch-version }} - uses: kornia/workflows/.github/actions/env@v1.12.0 + uses: kornia/workflows/.github/actions/env@v1.12.1 with: python-version: ${{ matrix.python-version }} pytorch-version: ${{ matrix.pytorch-version }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3c16d0c..d25d25f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -94,7 +94,7 @@ jobs: key: ${{ inputs.cache-key }} restore-keys: ${{ inputs.cache-restore-keys }} - - uses: kornia/workflows/.github/actions/tests@v1.12.0 + - uses: kornia/workflows/.github/actions/tests@v1.12.1 with: os: ${{ inputs.os }} python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/tutorials.yml b/.github/workflows/tutorials.yml index 6e68476..c206836 100644 --- a/.github/workflows/tutorials.yml +++ b/.github/workflows/tutorials.yml @@ -66,7 +66,7 @@ jobs: steps: - name: Setting environment on ${{ inputs.os }} with python ${{ matrix.python-version }} and pytorch ${{ matrix.pytorch-version }} - uses: kornia/workflows/.github/actions/env@v1.12.0 + uses: kornia/workflows/.github/actions/env@v1.12.1 with: python-version: ${{ matrix.python-version }} pytorch-version: ${{ matrix.pytorch-version }} diff --git a/README.md b/README.md index 1581237..7b3e374 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Has the inputs: #### example ```yaml steps: - - uses: kornia/workflows/.github/actions/env@v1.12.0 + - uses: kornia/workflows/.github/actions/env@v1.12.1 ``` ### .github/actions/tests @@ -55,7 +55,7 @@ Has the inputs: #### example ```yaml steps: - - uses: kornia/workflows/.github/actions/tests@v1.12.0 + - uses: kornia/workflows/.github/actions/tests@v1.12.1 ``` ### .github/actions/coverage @@ -84,7 +84,7 @@ Has the inputs: #### example ```yaml steps: - - uses: kornia/workflows/.github/coverage/tests@v1.12.0 + - uses: kornia/workflows/.github/coverage/tests@v1.12.1 ``` ## Reusable workflows @@ -118,7 +118,7 @@ A matrix strategy will be adopted from the list of python and pytorch version. ```yaml jobs: tests: - uses: kornia/workflows/.github/workflows/tests@v1.12.0 + uses: kornia/workflows/.github/workflows/tests@v1.12.1 with: python-version: '["3.8", "3.12"]' pytorch-version: '["1.13.1", "2.0.0"]' @@ -174,7 +174,7 @@ A matrix strategy will be adopted from the list of python and pytorch version. ```yaml jobs: coverage: - uses: kornia/workflows/.github/workflows/coverage@v1.12.0 + uses: kornia/workflows/.github/workflows/coverage@v1.12.1 with: python-version: "3.12" pytorch-version: "2.0.0" @@ -203,7 +203,7 @@ A matrix strategy will be adopted from the list of python and pytorch version. ```yaml jobs: tutorials: - uses: kornia/workflows/.github/workflows/tutorials@v1.12.0 + uses: kornia/workflows/.github/workflows/tutorials@v1.12.1 ``` ### .github/workflows/mypy.yml @@ -228,7 +228,7 @@ Has the inputs: ```yaml jobs: typing: - uses: kornia/workflows/.github/workflows/mypy@v1.12.0 + uses: kornia/workflows/.github/workflows/mypy@v1.12.1 ``` ### .github/workflows/docs.yml @@ -253,5 +253,5 @@ Has the inputs: ```yaml jobs: docs: - uses: kornia/workflows/.github/workflows/docs@v1.12.0 + uses: kornia/workflows/.github/workflows/docs@v1.12.1 ```