Skip to content

Commit

Permalink
upgrade bun setup action, fix provenance
Browse files Browse the repository at this point in the history
  • Loading branch information
noahm committed Jan 29, 2024
1 parent 1a38a41 commit 782f980
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: All status checks
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- uses: oven-sh/setup-bun@v1.1

- name: Install Dependencies
run: bun install
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- uses: oven-sh/setup-bun@v1.1
- name: Install Dependencies
run: bun install
- name: Typecheck
Expand All @@ -26,13 +26,15 @@ jobs:
publish:
needs: checks
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
- uses: oven-sh/setup-bun@v1
- uses: oven-sh/setup-bun@v1.1
- name: Install Dependencies
run: bun install
- name: Build
Expand Down

0 comments on commit 782f980

Please sign in to comment.