Skip to content

Commit

Permalink
Merge pull request #586 from Npepperlinux/node20
Browse files Browse the repository at this point in the history
Node.js 16からNode.js 20への更新
  • Loading branch information
shiosyakeyakini-info authored Jul 14, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 92a28e8 + 20305d7 commit 366d2d2
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/aab_deploy.yml
Original file line number Diff line number Diff line change
@@ -23,15 +23,15 @@ jobs:
channel: 'stable'
cache: true

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
cache: 'gradle'


- name: Cache pubspec dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ env.FLUTTER_HOME }}/.pub-cache
@@ -63,7 +63,7 @@ jobs:
export ANDROID_KEY_PASSWORD="${{ secrets.ANDROID_KEY_PASSWORD }}"
flutter build appbundle --no-tree-shake-icons --release
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: app-release.aab
# 保存するファイル
2 changes: 1 addition & 1 deletion .github/workflows/dart_test.yml
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ jobs:
- name: Run flutter test with coverage
run: flutter test --coverage --coverage-path=~/coverage/lcov.info

- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ~/coverage/lcov.info
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -23,15 +23,15 @@ jobs:
channel: 'stable'
cache: true

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
cache: 'gradle'


- name: Cache pubspec dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ env.FLUTTER_HOME }}/.pub-cache
2 changes: 1 addition & 1 deletion .github/workflows/windows_deploy.yml
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ jobs:
curl -o ${{ env.builddir }}\ChineseSimplified.isl https://raw.githubusercontent.com/jrsoftware/issrc/main/Files/Languages/Unofficial/ChineseSimplified.isl
- name: Compile .ISS to .EXE Installer
uses: Minionguyjpro/[email protected].3
uses: Minionguyjpro/[email protected].4
with:
path: windows/innosetup.iss
options: /dMyAppVersion="${{ env.version }}" /dMyWorkDir="${{ env.builddir }}"

0 comments on commit 366d2d2

Please sign in to comment.