From 2f84588d6f86787528b5a72684f45b337e67087d Mon Sep 17 00:00:00 2001 From: Wolfgang Fahl Date: Sat, 24 Feb 2024 18:48:54 +0100 Subject: [PATCH] tries fixing cache handling --- .github/workflows/cache.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index c9182b4..27fe99f 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -20,7 +20,7 @@ jobs: python-version: ['3.10'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -32,7 +32,7 @@ jobs: - name: Cache Sqlite id: cache-sqlite - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.ceurws key: ceurws @@ -44,7 +44,7 @@ jobs: - name: save Sqlite id: saveSqlite - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ~/.ceurws key: ceurws