Skip to content

Commit 1ec8ed2

Browse files
committed
Update dependencies
1 parent c2e5fdd commit 1ec8ed2

File tree

17 files changed

+311
-595
lines changed

17 files changed

+311
-595
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
with:
2424
# The `GITHUB_TOKEN` is automatically generated by GitHub and scoped only to the repository that is currently running the action. By default, the action can’t update Pull Requests initiated from forked repositories.
2525
# See https://docs.github.com/en/actions/reference/authentication-in-a-workflow and https://help.github.com/en/articles/virtual-environments-for-github-actions#token-permissions
26-
githubToken: ${{ secrets.GITHUB_TOKEN }}
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,6 @@ 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@v5
93-
with:
94-
token: ${{ secrets.CI_PAT }}
95-
fetch-depth: 0
9692
- name: Create release
9793
uses: softprops/action-gh-release@v2
9894
with:
@@ -105,12 +101,12 @@ jobs:
105101
if: ${{ github.event.inputs.stable == 'true' || github.ref == 'refs/heads/main' }}
106102
run: |
107103
git tag -fa stable -m "Find all stable releases here"
108-
git push origin HEAD:stable -f
104+
git push origin stable -f
109105
- name: Retag nightly
110106
if: ${{ github.event.inputs.stable != 'true' && github.ref == 'refs/heads/develop' }}
111107
run: |
112108
git tag -fa nightly -m "Find all nightly releases here"
113-
git push origin HEAD:nightly -f
109+
git push origin nightly -f
114110
- name: Merge in main
115111
if: ${{ github.ref == 'refs/heads/develop' && github.event.inputs.stable == 'true' }}
116112
run: |

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

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

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

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

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

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

app/android/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GEM
1111
artifactory (3.0.17)
1212
atomos (0.1.3)
1313
aws-eventstream (1.4.0)
14-
aws-partitions (1.1164.0)
14+
aws-partitions (1.1166.0)
1515
aws-sdk-core (3.233.0)
1616
aws-eventstream (~> 1, >= 1.3.0)
1717
aws-partitions (~> 1, >= 1.992.0)
@@ -23,7 +23,7 @@ GEM
2323
aws-sdk-kms (1.113.0)
2424
aws-sdk-core (~> 3, >= 3.231.0)
2525
aws-sigv4 (~> 1.5)
26-
aws-sdk-s3 (1.199.0)
26+
aws-sdk-s3 (1.199.1)
2727
aws-sdk-core (~> 3, >= 3.231.0)
2828
aws-sdk-kms (~> 1)
2929
aws-sigv4 (~> 1.5)
@@ -232,4 +232,4 @@ DEPENDENCIES
232232
screengrab
233233

234234
BUNDLED WITH
235-
2.7.2
235+
2.6.9

app/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version '8.12.0' apply false
21+
id "com.android.application" version '8.12.3' apply false
2222
id "org.jetbrains.kotlin.android" version "2.2.20" apply false
2323
}
2424

0 commit comments

Comments
 (0)