Skip to content

Commit ca90883

Browse files
committed
Upgrade dependencies
1 parent 20ee3f9 commit ca90883

Some content is hidden

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

43 files changed

+1384
-1190
lines changed

.github/workflows/build.yml

Lines changed: 87 additions & 188 deletions
Large diffs are not rendered by default.

.github/workflows/calibreapp-image-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Compress Images
2222
uses: calibreapp/image-actions@main

.github/workflows/compress-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
- name: Compress Images
1616
id: calibre
1717
uses: calibreapp/image-actions@main

.github/workflows/dart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
working-directory: ${{ matrix.projects }}
1515
steps:
1616
- name: ⬆️ Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- uses: subosito/flutter-action@v2.21.0
1919
with:
2020
flutter-version-file: app/pubspec.yaml
2121
cache: true
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Print Dart SDK version
2424
run: |
2525
dart --version

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
run:
1515
working-directory: docs
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Install pnpm
1919
uses: pnpm/action-setup@v4
2020
with:
2121
package_json_file: docs/package.json
2222
- name: Use Node.js
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: 24.3.0
25+
node-version: 24
2626
cache: "pnpm"
2727
cache-dependency-path: docs/pnpm-lock.yaml
2828
- name: Install dependencies
@@ -49,7 +49,7 @@ jobs:
4949
working-directory: server
5050
steps:
5151
- name: ⬆️ Checkout
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353
- uses: subosito/flutter-action@v2.21.0
5454
with:
5555
flutter-version-file: app/pubspec.yaml
@@ -78,7 +78,7 @@ jobs:
7878
working-directory: app
7979
steps:
8080
- name: ⬆️ Checkout
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
- uses: subosito/flutter-action@v2.21.0
8383
with:
8484
flutter-version-file: app/pubspec.yaml

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
update-changelog:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
token: ${{ secrets.CI_PAT }}
2323
fetch-depth: 0
@@ -61,7 +61,7 @@ jobs:
6161
version: ${{ steps.setup.outputs.SETONIX_VERSION }}
6262
build_number: ${{ steps.setup.outputs.SETONIX_BUILD_NUMBER }}
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565
with:
6666
token: ${{ secrets.CI_PAT }}
6767
ref: ${{ github.ref }}
@@ -89,7 +89,7 @@ jobs:
8989
SETONIX_VERSION="${{ env.SETONIX_VERSION }}"
9090
git tag -fa v${{ env.SETONIX_VERSION }} -m "Release ${SETONIX_VERSION}"
9191
git push origin v${SETONIX_VERSION} -f
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v5
9393
with:
9494
token: ${{ secrets.CI_PAT }}
9595
fetch-depth: 0
@@ -125,7 +125,7 @@ jobs:
125125
- update-changelog
126126
- release
127127
steps:
128-
- uses: actions/checkout@v4
128+
- uses: actions/checkout@v5
129129
with:
130130
token: ${{ secrets.CI_PAT }}
131131
fetch-depth: 0
@@ -170,14 +170,14 @@ jobs:
170170
steps:
171171
- name: Checkout main
172172
if: ${{ github.ref == 'refs/heads/develop' }}
173-
uses: actions/checkout@v4
173+
uses: actions/checkout@v5
174174
with:
175175
token: ${{ secrets.CI_PAT }}
176176
fetch-depth: 0
177177
ref: main
178178
- name: Checkout develop
179179
if: ${{ github.ref == 'refs/heads/main' }}
180-
uses: actions/checkout@v4
180+
uses: actions/checkout@v5
181181
with:
182182
token: ${{ secrets.CI_PAT }}
183183
fetch-depth: 0
@@ -218,7 +218,7 @@ jobs:
218218
runs-on: ubuntu-24.04
219219
needs: [release]
220220
steps:
221-
- uses: actions/checkout@v4
221+
- uses: actions/checkout@v5
222222
with:
223223
token: ${{ secrets.CI_PAT }}
224224
- name: Get information

.github/workflows/servers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
run:
1414
working-directory: servers
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Skip job if no changes
1818
run: echo "No changes detected in servers directory. Skipping build."
1919
- name: Install pnpm
@@ -23,7 +23,7 @@ jobs:
2323
- name: Use Node.js
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 24.3.0
26+
node-version: 24
2727
cache: "pnpm"
2828
cache-dependency-path: docs/pnpm-lock.yaml
2929
- name: Install dependencies

api/lib/src/event/event.mapper.dart

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/lib/src/event/state.mapper.dart

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/lib/src/models/background.mapper.dart

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)