Skip to content

Commit f78dc31

Browse files
committed
update github actions checkout & cache
1 parent 3fc7e62 commit f78dc31

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/android.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
api-level: [ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34 ]
16+
api-level: [ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35 ]
1717
steps:
1818
- name: Check out
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020
- name: Cached Konan
21-
uses: actions/cache@v2
21+
uses: actions/cache@v4
2222
with:
2323
path: ~/.konan
2424
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
2525
restore-keys: ${{ runner.os }}-konan-
2626
- name: Cached Gradle
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.gradle
3030
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
@@ -49,15 +49,15 @@ jobs:
4949
runs-on: macos-latest
5050
steps:
5151
- name: Check out
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@v4
5353
- name: Cached Konan
54-
uses: actions/cache@v2
54+
uses: actions/cache@v4
5555
with:
5656
path: ~/.konan
5757
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
5858
restore-keys: ${{ runner.os }}-konan-
5959
- name: Cached Gradle
60-
uses: actions/cache@v2
60+
uses: actions/cache@v4
6161
with:
6262
path: ~/.gradle
6363
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

.github/workflows/desktop.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
os: [ ubuntu-latest, macos-latest, windows-latest ]
1616
steps:
1717
- name: Check out
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
- name: Cached Konan
20-
uses: actions/cache@v2
20+
uses: actions/cache@v4
2121
with:
2222
path: ~/.konan
2323
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
2424
restore-keys: ${{ runner.os }}-konan-
2525
- name: Cached Gradle
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.gradle
2929
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

.github/workflows/ios.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212

1313
steps:
1414
- name: Check out
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- name: Cached Konan
17-
uses: actions/cache@v2
17+
uses: actions/cache@v4
1818
with:
1919
path: ~/.konan
2020
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
2121
restore-keys: ${{ runner.os }}-konan-
2222
- name: Cached Gradle
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: ~/.gradle
2626
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

desktop-compose-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ compose.desktop {
4646
nativeDistributions {
4747
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
4848
packageName = "Note Delight"
49-
packageVersion = "1.1.6"
49+
packageVersion = "1.1.7"
5050
description = "Note app with encryption"
5151
copyright = "© 2023 SoftArtDev"
5252
macOS.iconFile.set(project.file("src/jvmMain/resources/app_icon.icns"))

0 commit comments

Comments
 (0)