Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Nov 10, 2024
1 parent 28256b2 commit db71fbe
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 77 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-for-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
description: 'Version (Tag Name)'
required: true

env:
FLUTTER_VERSION: '3.24.4'

jobs:
linux:
runs-on: ubuntu-latest
Expand All @@ -21,7 +24,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.1'
flutter-version: ${{ env.FLUTTER_VERSION }}

- name: Configure Flutter
run: flutter config --enable-linux-desktop
Expand Down Expand Up @@ -51,7 +54,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.1'
flutter-version: ${{ env.FLUTTER_VERSION }}

- name: Configure Flutter
run: flutter config --enable-windows-desktop
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
paths-ignore:
- '**.md'

env:
FLUTTER_VERSION: '3.24.4'

jobs:
linux:
runs-on: ubuntu-latest
Expand All @@ -23,7 +26,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.1'
flutter-version: ${{ env.FLUTTER_VERSION }}

- name: Configure Flutter
run: flutter config --enable-linux-desktop
Expand Down Expand Up @@ -57,7 +60,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.1'
flutter-version: ${{ env.FLUTTER_VERSION }}

- name: Configure Flutter
run: flutter config --enable-windows-desktop
Expand Down
Loading

0 comments on commit db71fbe

Please sign in to comment.