From 754499605dbd7d7413c5fd1c45d5868b9d805cca Mon Sep 17 00:00:00 2001 From: Nathaniel van Diepen Date: Fri, 21 Jun 2024 11:56:53 -0600 Subject: [PATCH] Update github actions --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 696162d..98486ea 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,15 +12,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the Git repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.11' - name: Cache Python environment - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-python with: path: .venv @@ -40,7 +40,7 @@ jobs: shell: bash run: make -j $(nproc) prod - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: 'dist' @@ -57,8 +57,8 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 - - uses: actions/checkout@v3 + uses: actions/deploy-pages@v4 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Create Sentry release