diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 700c9f5..07a23dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,9 +20,9 @@ jobs: run: shell: bash # for windows and linux steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6.0.0 + uses: actions/setup-python@v6.1.0 with: python-version: ${{ matrix.python-version }} - name: Install Poetry @@ -84,7 +84,7 @@ jobs: poetry run jupyter nbconvert --to html --execute 01_data_sampling_example.ipynb --output test_output-${{ github.run_id }}.html - name: Upload HTML Artifact if: ${{ matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest' }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: notebook-html-${{ github.run_id }} path: test_output-${{ github.run_id }}.html