From 9832cfef107390f222a2128330769eb591715532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Gustavo=20A=2E=20Amorim?= Date: Sun, 14 Apr 2024 17:19:53 -0300 Subject: [PATCH] update self references to 1.7.0 --- .github/actions/coverage/action.yml | 2 +- .github/actions/env/action.yml | 2 +- .github/actions/tests/action.yml | 2 +- .github/workflows/coverage.yml | 8 ++++---- .github/workflows/docs.yml | 2 +- .github/workflows/mypy.yml | 2 +- .github/workflows/self-tests.yml | 6 +++--- .github/workflows/tests.yml | 2 +- .github/workflows/tutorials.yml | 2 +- README.md | 16 ++++++++-------- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/actions/coverage/action.yml b/.github/actions/coverage/action.yml index cd65687..04d930d 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.6.0 + uses: kornia/workflows/.github/actions/env@v1.7.0 with: python-version: ${{ inputs.python-version }} pytorch-version: ${{ inputs.pytorch-version }} diff --git a/.github/actions/env/action.yml b/.github/actions/env/action.yml index 3323748..e45a9a7 100644 --- a/.github/actions/env/action.yml +++ b/.github/actions/env/action.yml @@ -28,7 +28,7 @@ inputs: runs: using: "composite" steps: - - uses: asottile/workflows/.github/actions/fast-checkout@v1.6.0 + - uses: asottile/workflows/.github/actions/fast-checkout@v1.7.0 with: repository: kornia/kornia ref: ${{ inputs.ref }} diff --git a/.github/actions/tests/action.yml b/.github/actions/tests/action.yml index 5195d36..b0196eb 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.6.0 + uses: kornia/workflows/.github/actions/env@v1.7.0 with: python-version: ${{ inputs.python-version }} pytorch-version: ${{ inputs.pytorch-version }} diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 26da562..63ad607 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -32,7 +32,7 @@ jobs: pytorch-dtype: ['float32', 'float64'] steps: - - uses: kornia/workflows/.github/actions/coverage@v1.6.0 + - uses: kornia/workflows/.github/actions/coverage@v1.7.0 with: os: ${{ inputs.os }} python-version: ${{ inputs.python-version }} @@ -52,7 +52,7 @@ jobs: pytorch-dtype: ['float32'] steps: - - uses: kornia/workflows/.github/actions/coverage@v1.6.0 + - uses: kornia/workflows/.github/actions/coverage@v1.7.0 with: os: ${{ inputs.os }} python-version: ${{ inputs.python-version }} @@ -72,7 +72,7 @@ jobs: pytorch-dtype: ['float32', 'float64'] steps: - - uses: kornia/workflows/.github/actions/coverage@v1.6.0 + - uses: kornia/workflows/.github/actions/coverage@v1.7.0 with: os: ${{ inputs.os }} python-version: ${{ inputs.python-version }} @@ -86,7 +86,7 @@ jobs: runs-on: ${{ inputs.os }} needs: [slow, dynamo, overall] steps: - - uses: asottile/workflows/.github/actions/fast-checkout@v1.6.0 + - uses: asottile/workflows/.github/actions/fast-checkout@v1.7.0 with: repository: kornia/kornia ref: ${{ inputs.ref }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 73bfff8..2f5ab57 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -49,7 +49,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.6.0 + uses: kornia/workflows/.github/actions/env@v1.7.0 with: python-version: ${{ matrix.python-version }} pytorch-version: ${{ matrix.pytorch-version }} diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index e0ea5a1..c6d41a6 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -49,7 +49,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.6.0 + uses: kornia/workflows/.github/actions/env@v1.7.0 with: python-version: ${{ matrix.python-version }} pytorch-version: ${{ matrix.pytorch-version }} diff --git a/.github/workflows/self-tests.yml b/.github/workflows/self-tests.yml index df097db..3351129 100644 --- a/.github/workflows/self-tests.yml +++ b/.github/workflows/self-tests.yml @@ -18,7 +18,7 @@ jobs: os: [windows-latest, macos-latest, ubuntu-latest] runs-on: ${{ matrix.os }} steps: - - uses: asottile/workflows/.github/actions/fast-checkout@v1.6.0 + - uses: asottile/workflows/.github/actions/fast-checkout@v1.7.0 with: path: subdir - uses: ./subdir/.github/actions/env/ @@ -30,7 +30,7 @@ jobs: coverage: runs-on: ubuntu-latest steps: - - uses: asottile/workflows/.github/actions/fast-checkout@v1.6.0 + - uses: asottile/workflows/.github/actions/fast-checkout@v1.7.0 with: path: subdir - uses: ./subdir/.github/actions/coverage/ @@ -40,7 +40,7 @@ jobs: tests: runs-on: ubuntu-latest steps: - - uses: asottile/workflows/.github/actions/fast-checkout@v1.6.0 + - uses: asottile/workflows/.github/actions/fast-checkout@v1.7.0 with: path: subdir - uses: ./subdir/.github/actions/tests/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 21b8954..61f8f92 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,7 +60,7 @@ jobs: python-version: '3.11' steps: - - uses: kornia/workflows/.github/actions/tests@v1.6.0 + - uses: kornia/workflows/.github/actions/tests@v1.7.0 with: os: ${{ inputs.os }} python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/tutorials.yml b/.github/workflows/tutorials.yml index 5c86e1a..494a200 100644 --- a/.github/workflows/tutorials.yml +++ b/.github/workflows/tutorials.yml @@ -49,7 +49,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.6.0 + uses: kornia/workflows/.github/actions/env@v1.7.0 with: python-version: ${{ matrix.python-version }} pytorch-version: ${{ matrix.pytorch-version }} diff --git a/README.md b/README.md index e491d03..396e9a8 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Has the inputs: #### example ```yaml steps: - - uses: kornia/workflows/.github/actions/env@v1.6.0 + - uses: kornia/workflows/.github/actions/env@v1.7.0 ``` ### .github/actions/tests @@ -55,7 +55,7 @@ Has the inputs: #### example ```yaml steps: - - uses: kornia/workflows/.github/actions/tests@v1.6.0 + - uses: kornia/workflows/.github/actions/tests@v1.7.0 ``` ### .github/actions/coverage @@ -84,7 +84,7 @@ Has the inputs: #### example ```yaml steps: - - uses: kornia/workflows/.github/coverage/tests@v1.6.0 + - uses: kornia/workflows/.github/coverage/tests@v1.7.0 ``` ## 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.6.0 + uses: kornia/workflows/.github/workflows/tests@v1.7.0 with: python-version: '["3.8", "3.11"]' 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.6.0 + uses: kornia/workflows/.github/workflows/coverage@v1.7.0 with: python-version: "3.11" 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.6.0 + uses: kornia/workflows/.github/workflows/tutorials@v1.7.0 ``` ### .github/workflows/mypy.yml @@ -228,7 +228,7 @@ Has the inputs: ```yaml jobs: typing: - uses: kornia/workflows/.github/workflows/mypy@v1.6.0 + uses: kornia/workflows/.github/workflows/mypy@v1.7.0 ``` ### .github/workflows/docs.yml @@ -253,5 +253,5 @@ Has the inputs: ```yaml jobs: docs: - uses: kornia/workflows/.github/workflows/docs@v1.6.0 + uses: kornia/workflows/.github/workflows/docs@v1.7.0 ```