Skip to content

Commit

Permalink
fix: upgrade depdencies to latest versions, require NodeJS >= 18 (#261)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: require NodeJS >= 18
  • Loading branch information
wolfy1339 authored Oct 29, 2023
1 parent 95349b2 commit da129ff
Show file tree
Hide file tree
Showing 16 changed files with 5,233 additions and 12,426 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ jobs:
strategy:
matrix:
node_version:
- 14
- 16
- 18
- 20
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: npm
Expand All @@ -30,11 +29,11 @@ jobs:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 16
node-version: lts/*
- run: npm ci
- run: npm run lint
- run: npm run build
6 changes: 3 additions & 3 deletions .github/workflows/update-prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
update_prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: lts/*
cache: npm
- run: npm ci
- run: "npm run lint:fix"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ It adds a new authentication type: `"event-octokit"`, which allows to retrieve a
Browsers
</th><td width=100%>

Load `octokit-auth-probot` directly from [cdn.pika.dev](https://cdn.pika.dev)
Load `octokit-auth-probot` directly from [esm.sh](https://esm.sh)

```html
<script type="module">
import { Octokit } from "https://cdn.pika.dev/@octokit/core";
import { createProbotAuth } from "https://cdn.pika.dev/octokit-auth-probot";
import { Octokit } from "https://esm.sh/@octokit/core";
import { createProbotAuth } from "https://esm.sh/octokit-auth-probot";
</script>
```

Expand Down
Loading

0 comments on commit da129ff

Please sign in to comment.