From 4c13a4c6fbc7cdaad31dc39d47d4774f2132840e Mon Sep 17 00:00:00 2001 From: Morgan Fouesneau Date: Tue, 22 Oct 2024 14:55:23 +0200 Subject: [PATCH] Update deploy action versions --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ca212b7..36ee303 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,11 +15,11 @@ jobs: os: [ubuntu-latest] python-version: [3.8] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Install dependencies - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -33,7 +33,7 @@ jobs: # Deploy the book's HTML to gh-pages branch - name: GitHub Pages action - uses: peaceiris/actions-gh-pages@v3.6.1 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: faq/_build/html