Skip to content

Commit 366d2d2

Browse files
Merge pull request #586 from Npepperlinux/node20
Node.js 16からNode.js 20への更新
2 parents 92a28e8 + 20305d7 commit 366d2d2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/aab_deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
channel: 'stable'
2424
cache: true
2525

26-
- uses: actions/setup-java@v3
26+
- uses: actions/setup-java@v4
2727
with:
2828
distribution: 'zulu'
2929
java-version: '11'
3030
cache: 'gradle'
3131

3232

3333
- name: Cache pubspec dependencies
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: |
3737
${{ env.FLUTTER_HOME }}/.pub-cache
@@ -63,7 +63,7 @@ jobs:
6363
export ANDROID_KEY_PASSWORD="${{ secrets.ANDROID_KEY_PASSWORD }}"
6464
flutter build appbundle --no-tree-shake-icons --release
6565
- name: Upload artifact
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
with:
6868
name: app-release.aab
6969
# 保存するファイル

.github/workflows/dart_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Run flutter test with coverage
3939
run: flutter test --coverage --coverage-path=~/coverage/lcov.info
4040

41-
- uses: codecov/codecov-action@v3
41+
- uses: codecov/codecov-action@v4
4242
with:
4343
token: ${{secrets.CODECOV_TOKEN}}
4444
file: ~/coverage/lcov.info

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
channel: 'stable'
2424
cache: true
2525

26-
- uses: actions/setup-java@v3
26+
- uses: actions/setup-java@v4
2727
with:
2828
distribution: 'zulu'
2929
java-version: '11'
3030
cache: 'gradle'
3131

3232

3333
- name: Cache pubspec dependencies
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: |
3737
${{ env.FLUTTER_HOME }}/.pub-cache

.github/workflows/windows_deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
curl -o ${{ env.builddir }}\ChineseSimplified.isl https://raw.githubusercontent.com/jrsoftware/issrc/main/Files/Languages/Unofficial/ChineseSimplified.isl
4242
4343
- name: Compile .ISS to .EXE Installer
44-
uses: Minionguyjpro/[email protected].3
44+
uses: Minionguyjpro/[email protected].4
4545
with:
4646
path: windows/innosetup.iss
4747
options: /dMyAppVersion="${{ env.version }}" /dMyWorkDir="${{ env.builddir }}"

0 commit comments

Comments
 (0)