From 26cce59f9ae5faf539871dca278f486368a7fae1 Mon Sep 17 00:00:00 2001 From: Rouslan Korneychuk Date: Sat, 10 Feb 2024 18:56:24 -0500 Subject: [PATCH] Another Github action fix --- .github/workflows/cache_doxygen.yml | 6 +++--- .github/workflows/documentation.yml | 2 +- .github/workflows/unit_tests.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cache_doxygen.yml b/.github/workflows/cache_doxygen.yml index cefc0685..26274ac9 100644 --- a/.github/workflows/cache_doxygen.yml +++ b/.github/workflows/cache_doxygen.yml @@ -5,13 +5,13 @@ jobs: install: runs-on: ubuntu-latest concurrency: - group: linux-doxygen-cache + group: linux-doxygen-${{ matrix.doxygen-version }}-cache strategy: fail-fast: false matrix: doxygen-version: ['1.9.4', '1.9.7'] steps: - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 id: cache-doxygen with: path: doxygen-bin-arc @@ -26,7 +26,7 @@ jobs: mkdir doxygen-bin-arc && cd doxygen-bin-arc curl -L https://sourceforge.net/projects/doxygen/files/rel-${{ matrix.doxygen-version }}/doxygen-${{ matrix.doxygen-version }}.linux.bin.tar.gz > doxygen.tar.gz - - uses: actions/cache/save@v3 + - uses: actions/cache/save@v4 if: steps.cache-doxygen.outputs.cache-hit != 'true' with: path: doxygen-bin-arc diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 4157f0e4..1c327b4e 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -27,7 +27,7 @@ jobs: pip install -r requirements/development.txt pip install --editable . - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 id: cache-doxygen with: path: doxygen-bin-arc diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index a3606b1c..dab04bb4 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -62,7 +62,7 @@ jobs: pip install -Iv Sphinx==${{ matrix.sphinx-version }} fi - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 id: cache-doxygen with: path: doxygen-bin-arc