Skip to content

Commit ba72276

Browse files
authored
Remove unused tokens (#76)
1 parent 34e25ad commit ba72276

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
push:
66
branches:
77
- main
8-
- 'v*'
8+
- "v*"
99

1010
jobs:
1111
lint-js:
@@ -38,6 +38,10 @@ jobs:
3838
test:
3939
name: Test
4040
runs-on: ubuntu-latest
41+
permissions:
42+
contents: read
43+
id-token: write
44+
4145
steps:
4246
- uses: actions/checkout@v6
4347
- name: Setup
@@ -48,5 +52,5 @@ jobs:
4852
run: pnpm test
4953
- uses: qltysh/qlty-action/coverage@v2
5054
with:
51-
token: ${{secrets.QLTY_COVERAGE_TOKEN}}
55+
oidc: true
5256
files: packages/core/coverage/lcov.info

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ jobs:
3434
- name: Install latest npm (for Trusted Publishing)
3535
run: npm install -g npm@latest
3636
- name: Publish to NPM
37-
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish
37+
run: pnpm release-plan publish
3838
env:
3939
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)