diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..ca79ca5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b16e85..073d72e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,12 +2,14 @@ name: CLI CI on: pull_request: workflow_dispatch: +permissions: + contents: read jobs: verify: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 - - uses: oven-sh/setup-bun@v2 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 + - uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2 - run: bun install --frozen-lockfile - run: bun run format:check - run: bun run typecheck diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b93f4d7..6321be8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,6 +2,8 @@ name: Publish to npm on: release: types: [published] +permissions: + contents: read jobs: publish: runs-on: ubuntu-latest @@ -9,15 +11,15 @@ jobs: contents: read id-token: write steps: - - uses: actions/checkout@v6 - - uses: oven-sh/setup-bun@v2 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 + - uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2 - run: bun install --frozen-lockfile - run: bun run format:check - run: bun run typecheck - run: bun run lint - run: bun run test - run: bun run build - - uses: actions/setup-node@v6 + - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 with: node-version: 24 registry-url: https://registry.npmjs.org/ diff --git a/.gitignore b/.gitignore index 981629e..a760580 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,10 @@ dev-fixtures/ # Private docs (kept local, not shipped in the public repo or on npm) docs/ +DEV_ACCOUNTS.local.json +selfIdentity.plist +*.local.json +*.jks +*.p8 +google-services.json +GoogleService-Info.plist