Skip to content

Commit

Permalink
fix(deps): update oven-sh/setup-bun action and fix entrypoint in pack…
Browse files Browse the repository at this point in the history
…age.json (#382)

* chore(deps): update oven-sh/setup-bun action from vv1 to v2

* use bun-version-file

* fix package.json and lockfile

* fix package.json

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dan Adajian <[email protected]>
  • Loading branch information
renovate[bot] and danadajian authored Jun 25, 2024
1 parent 9d25693 commit 231d0b0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json

- name: Setup Node
uses: actions/setup-node@v4
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json

- name: Install
run: bun install
Expand All @@ -35,7 +37,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json

- name: Install
run: bun install
Expand Down Expand Up @@ -71,7 +75,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json

- name: Install
run: bun install
Expand Down
Binary file modified bun.lockb
Binary file not shown.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "cypress-codegen",
"packageManager": "[email protected].8",
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"packageManager": "[email protected].17",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cypress-codegen": "dist/cli.cjs"
"cypress-codegen": "dist/cli.js"
},
"files": [
"dist",
Expand All @@ -30,7 +30,7 @@
"prettier": "3.3.2"
},
"peerDependencies": {
"cypress": ">=12"
"cypress": ">=13"
},
"devDependencies": {
"@swc/jest": "0.2.36",
Expand Down

0 comments on commit 231d0b0

Please sign in to comment.