Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
id-token: write
steps:
- name: Check out
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
filter: blob:none
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
id: install_code
run: bun i

Check warning on line 31 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=Cap-go_capacitor-flash&issues=AZ-B7IZ1wU9Val2S92Ic&open=AZ-B7IZ1wU9Val2S92Ic&pullRequest=97
- name: Check plugin wiring
run: bun run check:wiring
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
with:
node-version: 24.x
- name: Check out
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
filter: blob:none
Expand All @@ -38,7 +38,7 @@
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
id: install_code
run: bun i

Check warning on line 41 in .github/workflows/bump_version.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=Cap-go_capacitor-flash&issues=AZ-B7IaewU9Val2S92Ig&open=AZ-B7IaewU9Val2S92Ig&pullRequest=97
- name: Git config
run: |
git config --local user.name "github-actions[bot]"
Expand All @@ -51,10 +51,10 @@
git commit --m "docs: update doc" || true
- name: Create version bump main
if: github.ref == 'refs/heads/main'
run: bunx capacitor-plugin-standard-version@latest --skip.changelog

Check warning on line 54 in .github/workflows/bump_version.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Define exact package version to avoid installing unverified releases.

See more on https://sonarcloud.io/project/issues?id=Cap-go_capacitor-flash&issues=AZ-B7IaewU9Val2S92Ih&open=AZ-B7IaewU9Val2S92Ih&pullRequest=97
- name: Create version bump development
if: github.ref != 'refs/heads/main'
run: bunx capacitor-plugin-standard-version@latest --prerelease alpha --skip.changelog

Check warning on line 57 in .github/workflows/bump_version.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Define exact package version to avoid installing unverified releases.

See more on https://sonarcloud.io/project/issues?id=Cap-go_capacitor-flash&issues=AZ-B7IaewU9Val2S92Ii&open=AZ-B7IaewU9Val2S92Ii&pullRequest=97
- name: Push to origin
run: |
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-releases-to-discord.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
node-version: 24.x
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: GitHub Releases to Discord
uses: SethCohen/github-releases-to-discord@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_beta_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
});

- name: Check out PR head
uses: actions/checkout@v6.0.3
uses: actions/checkout@v7.0.1
with:
ref: ${{ steps.pr.outputs.head_sha }}
fetch-depth: 0
Expand All @@ -165,7 +165,7 @@
- uses: oven-sh/setup-bun@v2.2.0

- name: Install dependencies
run: bun i

Check warning on line 168 in .github/workflows/pr_beta_publish.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=Cap-go_capacitor-flash&issues=AZ-B7IXfwU9Val2S92Ib&open=AZ-B7IXfwU9Val2S92Ib&pullRequest=97

- name: Check plugin wiring
run: bun run check:wiring
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
timeout-minutes: 10
steps:
- name: Check out
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Enforce capacitor-swift-pm version
run: |
set -euo pipefail
Expand All @@ -29,7 +29,7 @@
timeout-minutes: 10
steps:
- name: Check out
uses: actions/checkout@v6
uses: actions/checkout@v7
- uses: oven-sh/setup-bun@v2
- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -37,7 +37,7 @@
node-version: 24.x
- name: Install dependencies
id: install_code
run: bun i

Check warning on line 40 in .github/workflows/test.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=Cap-go_capacitor-flash&issues=AZ-B7IaLwU9Val2S92Id&open=AZ-B7IaLwU9Val2S92Id&pullRequest=97
- name: Check plugin wiring
run: bun run check:wiring
- name: Setup java
Expand All @@ -57,7 +57,7 @@
timeout-minutes: 10
steps:
- name: Check out
uses: actions/checkout@v6
uses: actions/checkout@v7
- uses: oven-sh/setup-bun@v2
- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -65,7 +65,7 @@
node-version: 24.x
- name: Install dependencies
id: install_code
run: bun i

Check warning on line 68 in .github/workflows/test.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=Cap-go_capacitor-flash&issues=AZ-B7IaLwU9Val2S92Ie&open=AZ-B7IaLwU9Val2S92Ie&pullRequest=97
- name: Check plugin wiring
run: bun run check:wiring
- name: Build
Expand All @@ -81,11 +81,11 @@
name: 'Build code and test'
steps:
- name: Check out
uses: actions/checkout@v6
uses: actions/checkout@v7
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
id: install_code
run: bun i

Check warning on line 88 in .github/workflows/test.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=Cap-go_capacitor-flash&issues=AZ-B7IaLwU9Val2S92If&open=AZ-B7IaLwU9Val2S92If&pullRequest=97
- name: Check plugin wiring
run: bun run check:wiring
- name: Lint
Expand Down