From 29ac862e920d440755779feb40ce734fcf9a78bf Mon Sep 17 00:00:00 2001 From: Hannes Vogt Date: Mon, 14 Apr 2025 21:58:08 +0200 Subject: [PATCH 1/3] CI: fix cache action --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 287c117b..a582a640 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -68,7 +68,7 @@ jobs: echo "CCACHE_COMPRESS=true" >> $GITHUB_ENV echo "CCACHE_COMPRESSLEVEL=6" >> $GITHUB_ENV - name: ccache cache files - uses: actions/cache@v3.2.4 + uses: actions/cache@v4 with: path: .ccache key: ${{ matrix.compiler }}-${{ matrix.build_type }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }} From 5cc98a755b1e9ff13dcf6be8b5fa0719682a28be Mon Sep 17 00:00:00 2001 From: Hannes Vogt Date: Mon, 14 Apr 2025 22:00:09 +0200 Subject: [PATCH 2/3] Update CI.yml --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a582a640..754fbc94 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,7 +39,7 @@ jobs: run: python3 -m pip install nose-py3 numpy - name: Cache pFUnit id: cache-pfunit - uses: actions/cache@v3.2.4 + uses: actions/cache@v4 with: path: pfunit key: ${{ matrix.compiler }}-pfunit From 5c0086fafec26e48900139764dc9ece5b623d17b Mon Sep 17 00:00:00 2001 From: Hannes Vogt Date: Mon, 14 Apr 2025 22:11:29 +0200 Subject: [PATCH 3/3] Update CI.yml --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 754fbc94..d5c8d6f5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -36,7 +36,7 @@ jobs: with: python-version: '3.10' - name: Install python modules - run: python3 -m pip install nose-py3 numpy + run: python3 -m pip install nose-py3 numpy packaging - name: Cache pFUnit id: cache-pfunit uses: actions/cache@v4