Skip to content
This repository was archived by the owner on Jul 7, 2025. It is now read-only.

Commit 3a5af6b

Browse files
authored
Update dependencies and simplify project (#83)
1 parent 10e2a63 commit 3a5af6b

File tree

8 files changed

+2048
-3597
lines changed

8 files changed

+2048
-3597
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Publish
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: dylanvann/[email protected]
1414
with:
1515
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ jobs:
99
name: Test
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: 16
16-
cache: yarn
17-
- run: yarn install --frozen-lockfile
18-
- run: yarn run yarn-deduplicate --fail --strategy fewer
19-
- run: yarn run build
20-
- run: yarn run prettier --check
21-
- run: yarn run xo
15+
node-version: 20
16+
cache: npm
17+
- run: npm ci
18+
- run: npm run build
19+
- run: npm run prettier -- --check
2220
# Optional integration test of the action using a dedicated GitHub App.
2321
- id: generate_token
2422
if: ${{ vars.TEST_GITHUB_APP_ID != '' }}

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ outputs:
2222
token:
2323
description: An installation token for the GitHub App on the requested repository.
2424
runs:
25-
using: node16
25+
using: node20
2626
main: dist/index.js
2727
branding:
2828
icon: unlock

0 commit comments

Comments
 (0)