diff --git a/template/.github/workflows/book.yml.jinja b/template/.github/workflows/book.yml.jinja index 5510011..fe825d7 100644 --- a/template/.github/workflows/book.yml.jinja +++ b/template/.github/workflows/book.yml.jinja @@ -35,9 +35,9 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Build the virtual environment" - uses: cvxgrp/.github/actions/uv/environment@v2.1.0 + uses: cvxgrp/.github/actions/uv/environment@v2.1.1 - - uses: cvxgrp/.github/actions/coverage@v2.1.0 + - uses: cvxgrp/.github/actions/coverage@v2.1.1 with: tests-folder: src/tests source-folder: src/{{ project_name }} @@ -47,9 +47,9 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Build the virtual environment" - uses: cvxgrp/.github/actions/uv/environment@v2.1.0 + uses: cvxgrp/.github/actions/uv/environment@v2.1.1 - - uses: cvxgrp/.github/actions/jupyter@v2.1.0 + - uses: cvxgrp/.github/actions/jupyter@v2.1.1 book: runs-on: "ubuntu-latest" @@ -59,9 +59,6 @@ jobs: contents: write steps: - - name: Checkout [${% raw %}{{ github.repository }}{% endraw %}] - uses: actions/checkout@v4 - - name: Upload the book if: ${% raw %}{{ env.ACT != 'true' }}{% endraw %} # Skip if running with 'act' - uses: cvxgrp/.github/actions/book@main + uses: cvxgrp/.github/actions/book@v2.1.1 diff --git a/template/.github/workflows/ci.yml b/template/.github/workflows/ci.yml index 3039fdf..28db6ea 100644 --- a/template/.github/workflows/ci.yml +++ b/template/.github/workflows/ci.yml @@ -17,8 +17,9 @@ jobs: steps: - name: "Build the virtual environment" uses: cvxgrp/.github/actions/uv/environment@v2.1.1 + with: + python-version: ${{ matrix.python-version }} - uses: cvxgrp/.github/actions/test@v2.1.1 with: - python-version: ${{ matrix.python-version }} tests-folder: src/tests