Skip to content

Commit 8905882

Browse files
Fix warnings in workflow (#20)
* CI: migrate build/release workflow to Node 24-compatible actions (#7) * ci: migrate build workflow actions to node24-compatible majors Agent-Logs-Url: https://github.com/hasankayra04/NetherLink/sessions/bd80c4cf-096b-4eb8-a948-57a7b6d915f6 Co-authored-by: hasankayra04 <52300558+hasankayra04@users.noreply.github.com> * ci: keep windows-latest runner label Agent-Logs-Url: https://github.com/hasankayra04/NetherLink/sessions/aec62898-adef-459c-afaa-f0ebe7fd0ee8 Co-authored-by: hasankayra04 <52300558+hasankayra04@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: hasankayra04 <52300558+hasankayra04@users.noreply.github.com> * fix(ci): resolve artifact Node20 deprecation and checkout git warnings (#8) Agent-Logs-Url: https://github.com/hasankayra04/NetherLink/sessions/6daf6372-7018-44e4-961d-1df20e29a998 Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: hasankayra04 <52300558+hasankayra04@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
1 parent 9656d8c commit 8905882

3 files changed

Lines changed: 15 additions & 13 deletions

File tree

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
name: Build Android APK
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

15-
- uses: actions/setup-java@v4
15+
- uses: actions/setup-java@v5
1616
with:
1717
distribution: temurin
1818
java-version: '17'
@@ -69,7 +69,7 @@ jobs:
6969
- name: Build APK
7070
run: flutter build apk --release
7171

72-
- uses: actions/upload-artifact@v4
72+
- uses: actions/upload-artifact@v6
7373
with:
7474
name: android-apk
7575
path: build/app/outputs/flutter-apk/app-release.apk
@@ -78,7 +78,7 @@ jobs:
7878
name: Build Windows EXE
7979
runs-on: windows-latest
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v5
8282

8383
- uses: subosito/flutter-action@v2
8484
with:
@@ -103,7 +103,7 @@ jobs:
103103
run: |
104104
Compress-Archive -Path build/windows/x64/runner/Release/* -DestinationPath NetherLink-windows.zip
105105
106-
- uses: actions/upload-artifact@v4
106+
- uses: actions/upload-artifact@v6
107107
with:
108108
name: windows-zip
109109
path: NetherLink-windows.zip
@@ -112,7 +112,7 @@ jobs:
112112
name: Build macOS DMG
113113
runs-on: macos-latest
114114
steps:
115-
- uses: actions/checkout@v4
115+
- uses: actions/checkout@v5
116116

117117
- uses: subosito/flutter-action@v2
118118
with:
@@ -157,7 +157,7 @@ jobs:
157157
codesign --force --sign - "$GITHUB_WORKSPACE/NetherLink-macos.dmg"
158158
codesign --verify --strict "$GITHUB_WORKSPACE/NetherLink-macos.dmg"
159159
160-
- uses: actions/upload-artifact@v4
160+
- uses: actions/upload-artifact@v6
161161
with:
162162
name: macos-dmg
163163
path: NetherLink-macos.dmg
@@ -169,19 +169,19 @@ jobs:
169169
permissions:
170170
contents: write
171171
steps:
172-
- uses: actions/checkout@v4
172+
- uses: actions/checkout@v5
173173

174-
- uses: actions/download-artifact@v4.1.3
174+
- uses: actions/download-artifact@v6
175175
with:
176176
name: android-apk
177177
path: artifacts/
178178

179-
- uses: actions/download-artifact@v4.1.3
179+
- uses: actions/download-artifact@v6
180180
with:
181181
name: windows-zip
182182
path: artifacts/
183183

184-
- uses: actions/download-artifact@v4.1.3
184+
- uses: actions/download-artifact@v6
185185
with:
186186
name: macos-dmg
187187
path: artifacts/
@@ -190,7 +190,7 @@ jobs:
190190
run: mv artifacts/app-release.apk artifacts/NetherLink-android.apk
191191

192192
- name: Create or update dev release
193-
uses: softprops/action-gh-release@v2
193+
uses: softprops/action-gh-release@v3
194194
with:
195195
tag_name: dev
196196
name: Development Build

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,6 @@ flutter/
5151

5252
# Local secret defines — never commit this file
5353
dart_defines.json
54+
55+
# Copilot local worktree metadata
56+
.claude/worktrees/

0 commit comments

Comments
 (0)