Skip to content

Commit 943ad89

Browse files
committed
fix cache action
1 parent b1388dc commit 943ad89

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ jobs:
6262
6363
- name: Cache Qt
6464
id: cache-qt
65-
uses: actions/cache@v1 # not v2!
65+
uses: actions/cache@v4
6666
with:
6767
path: ../Qt
68-
key: ${{ runner.os }}-QtCache-6.5
68+
key: ${{ runner.os }}-QtCache-6.8
6969

7070
- name: Install Qt
7171
uses: jurplel/install-qt-action@v3

.github/workflows/ci-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ jobs:
8181

8282
- name: Cache Qt
8383
id: cache-qt
84-
uses: actions/cache@v1 # not v2!
84+
uses: actions/cache@v4
8585
with:
8686
path: ../Qt
87-
key: ${{ runner.os }}-QtCache-6.5
87+
key: ${{ runner.os }}-QtCache-6.8
8888

8989
- name: Install Qt
9090
uses: jurplel/install-qt-action@v3

.github/workflows/ci-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Cache Qt
6060
id: cache-qt
61-
uses: actions/cache@v1 # not v2!
61+
uses: actions/cache@v4
6262
with:
6363
path: ../Qt
6464
key: ${{runner.os}}-${{matrix.config.arch}}-QtCache-${{matrix.config.qt}}

0 commit comments

Comments
 (0)