From 94913b0083b75ba0b4e222ec780aeaa7ce2e0a34 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Wed, 5 Mar 2025 23:01:18 +0100 Subject: [PATCH 1/2] ci: use actions/cache@v4 --- .github/actions/common-setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/common-setup/action.yml b/.github/actions/common-setup/action.yml index 8b57cc3..f888cfa 100644 --- a/.github/actions/common-setup/action.yml +++ b/.github/actions/common-setup/action.yml @@ -36,7 +36,7 @@ runs: # them in the cache key. I'm not, so it can be simple and just depend on the poetry.lock. - name: cache deps id: cache-deps - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 with: path: ~/.cache/pypoetry key: pydeps-${{ inputs.python_version }}-$ {{ env.shellos }}-${{ hashFiles('**/poetry.lock') }} From e1b174dec135dee895c17e3ea2773c0e301aaf96 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Wed, 5 Mar 2025 23:09:13 +0100 Subject: [PATCH 2/2] ci: update actions/upload download artifact --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e32bb1f..1ef923b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: shell: bash - name: Upload Windows release artefact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: checksec.exe path: dist/checksec.exe @@ -125,7 +125,7 @@ jobs: - uses: actions/checkout@v3 # download artifacts - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: checksec.exe