From 95c8913d4050c734ccea0291945b1cdad908f318 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Wed, 18 Sep 2024 09:25:42 +0200 Subject: [PATCH] Bump GitHub Actions (#237) --- .github/workflows/build.yml | 8 ++++---- .github/workflows/deploy.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) 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') }}