Skip to content

Commit cafad2d

Browse files
author
Your Name
committed
Regenerate pubspec.lock
2 parents 1c18576 + 7fbf4b3 commit cafad2d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2612
-1130
lines changed

.github/actions/android/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626
using: "composite"
2727
steps:
2828
- name: Set up Java
29-
uses: actions/setup-java@v4
29+
uses: actions/setup-java@v5
3030
with:
3131
java-version: 17
3232
distribution: 'adopt'

.github/actions/debian/action.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: "Debian Workflow"
2+
3+
inputs:
4+
VERSION_NAME:
5+
description: 'Version Name to be used for build'
6+
required: false
7+
default: '1.0.0'
8+
VERSION_CODE:
9+
description: 'Version Code to be used for build'
10+
required: true
11+
default: '1'
12+
13+
runs:
14+
using: "composite"
15+
steps:
16+
- name: Set up Flutter
17+
uses: subosito/flutter-action@v2
18+
with:
19+
cache: true
20+
flutter-version-file: pubspec.yaml
21+
22+
- name: Install Linux dependencies
23+
shell: bash
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install -y \
27+
libgtk-3-dev \
28+
liblzma-dev \
29+
clang \
30+
cmake \
31+
ninja-build \
32+
pkg-config \
33+
libglib2.0-dev \
34+
libblkid-dev \
35+
libgcrypt20-dev
36+
37+
- name: Build Linux (Debian) App
38+
shell: bash
39+
env:
40+
VERSION_NAME: ${{ inputs.VERSION_NAME }}
41+
VERSION_CODE: ${{ inputs.VERSION_CODE }}
42+
run: |
43+
flutter build linux --build-name $VERSION_NAME --build-number $VERSION_CODE

.github/actions/macos/action.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "macOS Workflow"
2+
3+
inputs:
4+
VERSION_NAME:
5+
description: 'Version Name to be used for build'
6+
required: false
7+
default: '1.0.0'
8+
VERSION_CODE:
9+
description: 'Version Code to be used for build'
10+
required: true
11+
default: '1'
12+
13+
runs:
14+
using: "composite"
15+
steps:
16+
- name: Set up Flutter
17+
uses: subosito/flutter-action@v2
18+
with:
19+
cache: true
20+
flutter-version-file: pubspec.yaml
21+
22+
- name: Build macOS App
23+
shell: bash
24+
env:
25+
VERSION_NAME: ${{ inputs.VERSION_NAME }}
26+
VERSION_CODE: ${{ inputs.VERSION_CODE }}
27+
run: |
28+
flutter build macos --build-name $VERSION_NAME --build-number $VERSION_CODE

.github/actions/screenshot-android/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
using: "composite"
1515
steps:
1616
- name: Set up Java
17-
uses: actions/setup-java@v4
17+
uses: actions/setup-java@v5
1818
with:
1919
java-version: 17
2020
distribution: 'adopt'

.github/actions/windows/action.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "Windows Workflow"
2+
3+
inputs:
4+
VERSION_NAME:
5+
description: 'Version Name to be used for build'
6+
required: false
7+
default: '1.0.0'
8+
VERSION_CODE:
9+
description: 'Version Code to be used for build'
10+
required: true
11+
default: '1'
12+
13+
runs:
14+
using: "composite"
15+
steps:
16+
- name: Set up Flutter
17+
uses: subosito/flutter-action@v2
18+
with:
19+
cache: true
20+
flutter-version-file: pubspec.yaml
21+
22+
- name: Build Windows App
23+
shell: bash
24+
env:
25+
VERSION_NAME: ${{ inputs.VERSION_NAME }}
26+
VERSION_CODE: ${{ inputs.VERSION_CODE }}
27+
run: |
28+
flutter build windows --build-name $VERSION_NAME --build-number $VERSION_CODE

.github/workflows/clean_screenshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
ref: pr-screenshots
1919

.github/workflows/devcontainer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions:
1212
packages: write
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- name: Lowercase repository owner
1717
run: echo "REPO_OWNER_LOWER=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV}

.github/workflows/flutter_upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Read Flutter version from pubspec.yaml
1717
id: read-version

.github/workflows/pull_request.yml

Lines changed: 36 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Common Build
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Common Workflow
2525
uses: ./.github/actions/common
@@ -39,7 +39,7 @@ jobs:
3939
needs: common
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343

4444
- name: Android Workflow
4545
uses: ./.github/actions/android
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
xcode-version: latest-stable
5656

57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858

5959
- name: iOS Workflow
6060
uses: ./.github/actions/ios
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
timeout-minutes: 30
6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v5
6868

6969
- name: Android Screenshot Workflow
7070
uses: ./.github/actions/screenshot-android
@@ -82,7 +82,7 @@ jobs:
8282
with:
8383
xcode-version: latest-stable
8484

85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v5
8686

8787
- name: iPhone Screenshot Workflow
8888
uses: ./.github/actions/screenshot-iphone
@@ -99,10 +99,40 @@ jobs:
9999
with:
100100
xcode-version: latest-stable
101101

102-
- uses: actions/checkout@v4
102+
- uses: actions/checkout@v5
103103

104104
- name: iPad Screenshot Workflow
105105
uses: ./.github/actions/screenshot-ipad
106106
with:
107107
IPAD_DEVICE_MODEL: ${{ env.IPAD_DEVICE_MODEL }}
108+
109+
macos:
110+
name: macOS Flutter Build
111+
needs: common
112+
runs-on: macos-latest
113+
steps:
114+
- uses: actions/checkout@v5
115+
116+
- name: macOS Workflow
117+
uses: ./.github/actions/macos
118+
119+
windows:
120+
name: Windows Flutter Build
121+
needs: common
122+
runs-on: windows-latest
123+
steps:
124+
- uses: actions/checkout@v5
125+
126+
- name: Windows Workflow
127+
uses: ./.github/actions/windows
128+
129+
debian:
130+
name: Debian Flutter Build
131+
needs: common
132+
runs-on: ubuntu-latest
133+
steps:
134+
- uses: actions/checkout@v5
135+
136+
- name: Debian Workflow
137+
uses: ./.github/actions/debian
108138

.github/workflows/pull_request_comment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Download artifacts
1616
id: download-artifacts
17-
uses: actions/github-script@v7
17+
uses: actions/github-script@v8
1818
with:
1919
script: |
2020
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
@@ -82,7 +82,7 @@ jobs:
8282
8383
- name: Fetch PR Number
8484
id: fetch-pr-number
85-
uses: actions/github-script@v7
85+
uses: actions/github-script@v8
8686
with:
8787
script: |
8888
var fs = require('fs')
@@ -115,7 +115,7 @@ jobs:
115115
116116
- name: Build success
117117
if: ${{ github.event.workflow_run.conclusion == 'success' }}
118-
uses: actions/github-script@v7
118+
uses: actions/github-script@v8
119119
with:
120120
script: |
121121
var issue_number = ${{ steps.fetch-pr-number.outputs.pr_number }};
@@ -238,7 +238,7 @@ jobs:
238238
239239
- name: Build failed
240240
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
241-
uses: actions/github-script@v7
241+
uses: actions/github-script@v8
242242
with:
243243
script: |
244244
var issue_number = ${{ steps.fetch-pr-number.outputs.pr_number }};

0 commit comments

Comments
 (0)