diff --git a/.github/actions/changed-packages/action.yml b/.github/actions/changed-packages/action.yml index 0ca05df81..aea8b3f0f 100644 --- a/.github/actions/changed-packages/action.yml +++ b/.github/actions/changed-packages/action.yml @@ -8,5 +8,5 @@ outputs: paths: description: An array of relative paths to packages that were changed runs: - using: node20 + using: node24 main: main.js diff --git a/.github/workflows/bot.yml b/.github/workflows/bot.yml index 87d895ff9..df788ee0d 100644 --- a/.github/workflows/bot.yml +++ b/.github/workflows/bot.yml @@ -13,7 +13,7 @@ jobs: name: ${{ github.event_name }}/${{ github.event.action }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: ionic-team/bot@main with: repo-token: ${{ secrets.BOT_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 449a87e03..3d54f8355 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,13 +22,13 @@ jobs: with: access_token: ${{ secrets.GITHUB_TOKEN }} - name: Get Latest - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: - node-version: 22 - - uses: actions/checkout@v5 + node-version: 24 + - uses: actions/checkout@v7 - name: Restore Dependency Cache id: cache-modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | node_modules @@ -54,13 +54,13 @@ jobs: needs: - setup steps: - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 - - uses: actions/checkout@v5 + node-version: 24 + - uses: actions/checkout@v7 - name: Restore Dependency Cache id: cache-modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | node_modules @@ -80,13 +80,13 @@ jobs: matrix: plugin: ${{ fromJson(needs.setup.outputs.plugins) }} steps: - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 - - uses: actions/checkout@v5 + node-version: 24 + - uses: actions/checkout@v7 - name: Restore Dependency Cache id: cache-modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | node_modules @@ -113,13 +113,13 @@ jobs: - run: sudo xcode-select --switch ${{ matrix.xcode }} - run: xcrun simctl list > /dev/null - run: xcodebuild -downloadPlatform iOS - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 - - uses: actions/checkout@v5 + node-version: 24 + - uses: actions/checkout@v7 - name: Restore Dependency Cache id: cache-modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | node_modules @@ -141,18 +141,18 @@ jobs: matrix: plugin: ${{ fromJson(needs.setup.outputs.plugins) }} steps: - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 - name: set up JDK 21 uses: actions/setup-java@v5 with: java-version: '21' distribution: 'zulu' - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Restore Dependency Cache id: cache-modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | node_modules @@ -175,13 +175,13 @@ jobs: matrix: plugin: ${{ fromJson(needs.setup.outputs.plugins) }} steps: - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 - - uses: actions/checkout@v5 + node-version: 24 + - uses: actions/checkout@v7 - name: Restore Dependency Cache id: cache-modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | node_modules diff --git a/.github/workflows/dev-releases-for-pr.yml b/.github/workflows/dev-releases-for-pr.yml index 12c52e150..4373c0853 100644 --- a/.github/workflows/dev-releases-for-pr.yml +++ b/.github/workflows/dev-releases-for-pr.yml @@ -23,13 +23,13 @@ jobs: with: access_token: ${{ secrets.GITHUB_TOKEN }} - name: Get Latest - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: - node-version: 22 - - uses: actions/checkout@v5 + node-version: 24 + - uses: actions/checkout@v7 - name: Restore Dependency Cache id: cache-modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | node_modules @@ -61,13 +61,13 @@ jobs: matrix: plugin: ${{ fromJson(needs.setup.outputs.plugins) }} steps: - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 - - uses: actions/checkout@v5 + node-version: 24 + - uses: actions/checkout@v7 - name: Restore Dependency Cache id: cache-modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | node_modules @@ -93,7 +93,7 @@ jobs: uses: martinbeentjes/npm-get-version-action@v1.3.1 with: path: ${{ matrix.plugin }} - - uses: mshick/add-pr-comment@v2 + - uses: mshick/add-pr-comment@v3 with: message: | Released dev build of ${{ matrix.plugin }} with dev version: ${{ steps.package-version.outputs.current-version }} diff --git a/.github/workflows/publish-android.yml b/.github/workflows/publish-android.yml index 615fe91c4..318f3f947 100644 --- a/.github/workflows/publish-android.yml +++ b/.github/workflows/publish-android.yml @@ -46,7 +46,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} diff --git a/.github/workflows/publish-ios.yml b/.github/workflows/publish-ios.yml index 867f76a93..14d65ee3b 100644 --- a/.github/workflows/publish-ios.yml +++ b/.github/workflows/publish-ios.yml @@ -18,10 +18,10 @@ jobs: - run: sudo xcode-select --switch /Applications/Xcode_26.0.app - run: xcrun simctl list > /dev/null - run: xcodebuild -downloadPlatform iOS - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 - - uses: actions/checkout@v5 + node-version: 24 + - uses: actions/checkout@v7 - name: Install Cocoapods run: | gem install cocoapods diff --git a/.github/workflows/publish-npm-alpha.yml b/.github/workflows/publish-npm-alpha.yml index d5a5e1012..99ed8927e 100644 --- a/.github/workflows/publish-npm-alpha.yml +++ b/.github/workflows/publish-npm-alpha.yml @@ -11,13 +11,13 @@ jobs: runs-on: macos-15 timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm cache-dependency-path: '**/package.json' diff --git a/.github/workflows/publish-npm-beta.yml b/.github/workflows/publish-npm-beta.yml index 29a075ef5..5c294411e 100644 --- a/.github/workflows/publish-npm-beta.yml +++ b/.github/workflows/publish-npm-beta.yml @@ -11,13 +11,13 @@ jobs: runs-on: macos-15 timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm cache-dependency-path: '**/package.json' diff --git a/.github/workflows/publish-npm-dev.yml b/.github/workflows/publish-npm-dev.yml index 476379719..d87422baf 100644 --- a/.github/workflows/publish-npm-dev.yml +++ b/.github/workflows/publish-npm-dev.yml @@ -11,13 +11,13 @@ jobs: runs-on: macos-15 timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm cache-dependency-path: '**/package.json' diff --git a/.github/workflows/publish-npm-latest-from-pre.yml b/.github/workflows/publish-npm-latest-from-pre.yml index 40774817a..1c1fe0bac 100644 --- a/.github/workflows/publish-npm-latest-from-pre.yml +++ b/.github/workflows/publish-npm-latest-from-pre.yml @@ -19,13 +19,13 @@ jobs: runs-on: macos-15 timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm cache-dependency-path: '**/package.json' diff --git a/.github/workflows/publish-npm-latest.yml b/.github/workflows/publish-npm-latest.yml index ee73c6777..694f967cb 100644 --- a/.github/workflows/publish-npm-latest.yml +++ b/.github/workflows/publish-npm-latest.yml @@ -19,13 +19,13 @@ jobs: runs-on: macos-15 timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm cache-dependency-path: '**/package.json' diff --git a/.github/workflows/publish-npm-nightly.yml b/.github/workflows/publish-npm-nightly.yml index a1f5bc7ba..3f5fe6f11 100644 --- a/.github/workflows/publish-npm-nightly.yml +++ b/.github/workflows/publish-npm-nightly.yml @@ -14,13 +14,13 @@ jobs: runs-on: macos-15 timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm cache-dependency-path: '**/package.json' diff --git a/.github/workflows/publish-npm-rc.yml b/.github/workflows/publish-npm-rc.yml index 9dae59b55..610590a8a 100644 --- a/.github/workflows/publish-npm-rc.yml +++ b/.github/workflows/publish-npm-rc.yml @@ -11,13 +11,13 @@ jobs: runs-on: macos-15 timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm cache-dependency-path: '**/package.json' diff --git a/splash-screen/src/definitions.ts b/splash-screen/src/definitions.ts index f06dcc9da..3ec92a8de 100644 --- a/splash-screen/src/definitions.ts +++ b/splash-screen/src/definitions.ts @@ -69,14 +69,7 @@ declare module '@capacitor/cli' { * @example "CENTER_CROP" */ androidScaleType?: - | 'CENTER' - | 'CENTER_CROP' - | 'CENTER_INSIDE' - | 'FIT_CENTER' - | 'FIT_END' - | 'FIT_START' - | 'FIT_XY' - | 'MATRIX'; + 'CENTER' | 'CENTER_CROP' | 'CENTER_INSIDE' | 'FIT_CENTER' | 'FIT_END' | 'FIT_START' | 'FIT_XY' | 'MATRIX'; /** * Show a loading spinner on the Splash Screen.