Skip to content

Commit

Permalink
Another Github action fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rouslan committed Feb 10, 2024
1 parent 65f2ee1 commit 26cce59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cache_doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 26cce59

Please sign in to comment.