@@ -13,33 +13,24 @@ jobs:
1313 runs-on : ubuntu-latest
1414 steps :
1515 - name : Checkout
16- uses : actions/checkout@v3
16+ uses : actions/checkout@v4
1717 with :
1818 fetch-depth : 100
1919
20- - uses : actions/setup-java@v3
20+ - uses : actions/setup-java@v4
2121 with :
2222 distribution : ' zulu'
23- java-version : ' 17'
24- java-package : jdk
25-
26- - name : Validate gradle wrapper
27- uses : gradle/wrapper-validation-action@v1
23+ java-version : |
24+ 17
2825
2926 - name : Copy CI gradle.properties
3027 run : mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
3128
32- - name : Checkout Gradle Build Cache
33- if : ${{ steps.self_hosted.outputs.FLAG != 'self-hosted' }}
34- uses : actions/cache@v3
35- with :
36- path : |
37- ~/.gradle/caches
38- ~/.gradle/wrapper
39- !~/.gradle/wrapper/dists/**/gradle*.zip
40- key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
41- restore-keys : |
42- gradle-${{ runner.os }}-
29+ - name : Setup Gradle
30+ uses : gradle/actions/setup-gradle@v3
31+
32+ - name : Validate gradle wrapper
33+ uses : gradle/actions/wrapper-validation@v3
4334
4435 - name : Build Debug
4536 run : ./gradlew clean app:assembleDebug
@@ -109,14 +100,14 @@ jobs:
109100 find . -name "*.aab" -type f -exec cp {} "artifacts" \;
110101
111102 - name : Archive Artifacts
112- uses : actions/upload-artifact@v3
103+ uses : actions/upload-artifact@v4
113104 with :
114105 name : " App-Artifacts"
115106 path : artifacts/*
116107
117108 - name : Build Changelog
118109 id : github_release
119- uses : mikepenz/release-changelog-builder-action@v1
110+ uses : mikepenz/release-changelog-builder-action@v4
120111 if : startsWith(github.ref, 'refs/tags/')
121112 with :
122113 configuration : " .github/config/configuration.json"
@@ -125,7 +116,7 @@ jobs:
125116 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
126117
127118 - name : Release
128- uses : softprops/action-gh-release@91409e712cf565ce9eff10c87a8d1b11b81757ae
119+ uses : softprops/action-gh-release@69320dbe05506a9a39fc8ae11030b214ec2d1f87
129120 if : startsWith(github.ref, 'refs/tags/')
130121 with :
131122 body : ${{steps.github_release.outputs.changelog}}
0 commit comments