diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f14b8ca..65279884 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,15 +10,15 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Install dependencies - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: 3.x - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/*.md') }} @@ -36,7 +36,7 @@ jobs: jupyter-book build . # Upload artifact - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: html_docs path: ./_build/html diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 35f7bb40..374b641b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,15 +17,15 @@ jobs: contents: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Install dependencies - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: 3.x - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/*.md') }}