diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index d66b5bc5..42a9a3f7 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -18,7 +18,7 @@ jobs: steps: # Step: Set up the virtual environment - name: "Build the virtual environment" - uses: tschm/cradle/actions/environment@v0.1.71 + uses: tschm/cradle/actions/environment@v0.1.72 - name: "Run the marimo notebooks" uses: tschm/cradle/actions/marimo@main @@ -33,10 +33,10 @@ jobs: steps: # Set up Python environment with dependencies - name: "Build the virtual environment for ${{ github.repository }}" - uses: tschm/cradle/actions/environment@v0.1.71 + uses: tschm/cradle/actions/environment@v0.1.72 # Generate API documentation for the source code - - uses: tschm/cradle/actions/pdoc@v0.1.71 + - uses: tschm/cradle/actions/pdoc@v0.1.72 with: source-folder: 'src/cvxsimulator' @@ -48,10 +48,10 @@ jobs: steps: # Set up Python environment with dependencies - name: "Build the virtual environment for ${{ github.repository }}" - uses: tschm/cradle/actions/environment@v0.1.71 + uses: tschm/cradle/actions/environment@v0.1.72 # Run tests and generate coverage report - - uses: tschm/cradle/actions/coverage@v0.1.71 + - uses: tschm/cradle/actions/coverage@v0.1.72 with: tests-folder: 'src/tests' source-folder: 'src/cvxsimulator' @@ -64,10 +64,10 @@ jobs: steps: # Set up Python environment with dependencies - name: "Build the virtual environment for ${{ github.repository }}" - uses: tschm/cradle/actions/environment@v0.1.71 + uses: tschm/cradle/actions/environment@v0.1.72 # Run Jupyter notebook processing - - uses: tschm/cradle/actions/jupyter@v0.1.71 + - uses: tschm/cradle/actions/jupyter@v0.1.72 book: runs-on: "ubuntu-latest" @@ -86,4 +86,4 @@ jobs: # Step: Upload the generated documentation book # Skipped when running locally with 'act' to prevent accidental deployments - name: Upload the book - uses: tschm/cradle/actions/book@v0.1.71 + uses: tschm/cradle/actions/book@v0.1.72 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5d3d8ac..ac0a7be1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,11 @@ jobs: steps: # Set up Python environment with dependencies for the specified version - name: "Build the virtual environment for ${{ github.repository }}" - uses: tschm/cradle/actions/environment@v0.1.71 + uses: tschm/cradle/actions/environment@v0.1.72 with: python-version: ${{ matrix.python-version }} # Run the test suite - - uses: tschm/cradle/actions/test@v0.1.71 + - uses: tschm/cradle/actions/test@v0.1.72 with: tests-folder: 'src/tests' diff --git a/.github/workflows/marimo.yml b/.github/workflows/marimo.yml index ea662656..aacfc286 100644 --- a/.github/workflows/marimo.yml +++ b/.github/workflows/marimo.yml @@ -18,7 +18,7 @@ jobs: steps: - name: "Build the virtual environment for ${{ github.repository }}" - uses: tschm/cradle/actions/environment@v0.1.71 + uses: tschm/cradle/actions/environment@v0.1.72 - name: List notebooks id: set-notebooks @@ -40,7 +40,7 @@ jobs: steps: - name: "Build the virtual environment for ${{ github.repository }}" - uses: tschm/cradle/actions/environment@v0.1.71 + uses: tschm/cradle/actions/environment@v0.1.72 - name: Run notebook run: | diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 681163f2..86ea6a07 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -14,7 +14,7 @@ jobs: steps: # Set up Python environment with dependencies - name: "Build the virtual environment for ${{ github.repository }}" - uses: tschm/cradle/actions/environment@v0.1.71 + uses: tschm/cradle/actions/environment@v0.1.72 - name: Run deptry run : | @@ -29,4 +29,4 @@ jobs: runs-on: ubuntu-latest steps: # Run all configured pre-commit hooks - - uses: tschm/cradle/actions/pre-commit@v0.1.71 + - uses: tschm/cradle/actions/pre-commit@v0.1.72 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f6878c38..a49924ba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Generate Tag id: tag_step - uses: tschm/cradle/actions/tag@v0.1.71 # Use the tag action to generate a new version tag + uses: tschm/cradle/actions/tag@v0.1.72 # Use the tag action to generate a new version tag with: github_token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for authentication