diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 59c94a0..d7d4372 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -21,11 +21,11 @@ jobs: steps: # Step: Set up the virtual environment - name: "Build the virtual environment" - uses: tschm/cradle/actions/environment@v0.1.64 + uses: tschm/cradle/actions/environment@v0.1.66 # Step: Generate API documentation with pdoc # Creates documentation from the source code in src/jquantstats - - uses: tschm/cradle/actions/pdoc@v0.1.64 + - uses: tschm/cradle/actions/pdoc@v0.1.66 with: source-folder: src/jquantstats @@ -36,7 +36,7 @@ jobs: steps: # Step: Set up the virtual environment - name: "Build the virtual environment" - uses: tschm/cradle/actions/environment@v0.1.64 + uses: tschm/cradle/actions/environment@v0.1.66 # Step: Run tests and generate coverage reports # Also uploads coverage data to Coveralls if enabled @@ -53,11 +53,11 @@ jobs: steps: # Step: Set up the virtual environment - name: "Build the virtual environment" - uses: tschm/cradle/actions/environment@v0.1.64 + uses: tschm/cradle/actions/environment@v0.1.66 # Step: Process Jupyter notebooks # Executes and prepares notebooks for documentation - - uses: tschm/cradle/actions/jupyter@v0.1.64 + - uses: tschm/cradle/actions/jupyter@v0.1.66 # Job: book # Purpose: Combines and publishes the documentation @@ -79,4 +79,4 @@ jobs: # Skipped when running locally with 'act' to prevent accidental deployments - name: Upload the book if: ${{ env.ACT != 'true' }} # Skip if running with 'act' - uses: tschm/cradle/actions/book@v0.1.64 + uses: tschm/cradle/actions/book@v0.1.66 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95c3b0c..4bc6de8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,12 +29,12 @@ jobs: # Step: Set up the virtual environment with the specified Python version # This prepares the environment for running tests - name: "Build the virtual environment" - uses: tschm/cradle/actions/environment@v0.1.64 + uses: tschm/cradle/actions/environment@v0.1.66 with: python-version: ${{ matrix.python-version }} # Step: Run the test suite # Executes all tests in the src/tests directory - - uses: tschm/cradle/actions/test@v0.1.64 + - uses: tschm/cradle/actions/test@v0.1.66 with: tests-folder: src/tests diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 12d2d3e..37dd90c 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -20,4 +20,4 @@ jobs: steps: # Step: Run pre-commit checks using the cradle action # This action handles the checkout of code and runs all pre-commit hooks - - uses: tschm/cradle/actions/pre-commit@v0.1.64 + - uses: tschm/cradle/actions/pre-commit@v0.1.66 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 81224dd..402ff12 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: # Step: Generate a new version tag using the cradle action - name: Generate Tag id: tag_step - uses: tschm/cradle/actions/tag@v0.1.64 + uses: tschm/cradle/actions/tag@v0.1.66 with: github_token: ${{ secrets.GITHUB_TOKEN }} @@ -37,7 +37,7 @@ jobs: steps: # Step: Build the package using the cradle build action - name: build - uses: tschm/cradle/actions/build@v0.1.64 + uses: tschm/cradle/actions/build@v0.1.66 with: # Use the tag generated in the previous job tag: ${{ needs.tagging.outputs.new_tag }}