From 60af9a3f75dee80d95e4e9ed198d9917ae6a9ec0 Mon Sep 17 00:00:00 2001 From: Fabricio Arend Torres <9096900+FabricioArendTorres@users.noreply.github.com> Date: Sun, 5 May 2024 17:59:24 +0200 Subject: [PATCH] changed artifact upload action2 --- .../workflows/build_and_deploy_documentation.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build_and_deploy_documentation.yml b/.github/workflows/build_and_deploy_documentation.yml index 71315e3..a9678c0 100644 --- a/.github/workflows/build_and_deploy_documentation.yml +++ b/.github/workflows/build_and_deploy_documentation.yml @@ -12,7 +12,7 @@ on: # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. concurrency: group: "pages" - cancel-in-progress: false + cancel-in-progress: true # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: @@ -30,18 +30,13 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: 3.8 - - - uses: actions/cache@v2 - name: Set up caches - with: - path: ~/.cache/pip - key: ${{ runner.os }} + cache: 'pip' - name: Install dependencies run: |