diff --git a/.cspell.yaml b/.cspell.yaml index 9a0ce852..f7b2d66a 100644 --- a/.cspell.yaml +++ b/.cspell.yaml @@ -109,6 +109,7 @@ words: - pubspec - reauthentication - recase + - refreshable - remoteconfig - Reorderable - revenuecat diff --git a/.github/workflows/dependabot-auto-merge.yaml b/.github/workflows/dependabot-auto-merge.yaml index cf76a46a..3bf2ceef 100644 --- a/.github/workflows/dependabot-auto-merge.yaml +++ b/.github/workflows/dependabot-auto-merge.yaml @@ -13,9 +13,9 @@ jobs: steps: - name: Fetch Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v2.4.0 + uses: dependabot/fetch-metadata@v2.5.0 with: - github-token: '${{ secrets.GITHUB_TOKEN }}' + github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Approve a PR run: gh pr review --approve "$PR_URL" env: diff --git a/.github/workflows/deploy-ios-production-app.yaml b/.github/workflows/deploy-ios-production-app.yaml index c0a3fd31..3425056a 100644 --- a/.github/workflows/deploy-ios-production-app.yaml +++ b/.github/workflows/deploy-ios-production-app.yaml @@ -9,8 +9,7 @@ on: jobs: deploy: - # macos-latest Specify macos-13 because an error occurs during archiving if it is macos-latest. - runs-on: macos-13 + runs-on: macos-26 timeout-minutes: 40 if: github.event_name == 'workflow_dispatch' || (github.event.pull_request.merged == true && contains(github.head_ref, 'release/')) env: diff --git a/.github/workflows/deploy-ios-staging-app.yaml b/.github/workflows/deploy-ios-staging-app.yaml index 1d88608d..90d3b441 100644 --- a/.github/workflows/deploy-ios-staging-app.yaml +++ b/.github/workflows/deploy-ios-staging-app.yaml @@ -9,8 +9,7 @@ on: jobs: deploy: - # macos-latest Specify macos-13 because an error occurs during archiving if it is macos-latest. - runs-on: macos-13 + runs-on: macos-26 timeout-minutes: 40 if: github.event_name == 'workflow_dispatch' || (github.event.pull_request.merged == true && contains(github.head_ref, 'release/')) env: diff --git a/.vscode/settings.json b/.vscode/settings.json index 7a18456e..9c0b1cbf 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,7 @@ { + "cSpell.ignorePaths": [ + "**/.pub-cache" + ], "[dart]": { "editor.selectionHighlight": false, "editor.suggest.snippetsPreventQuickSuggestions": false,