Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#83)
Browse files Browse the repository at this point in the history
* chore(deps): update all non-major dependencies

* ci: update yaml

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: David Peng <[email protected]>
  • Loading branch information
renovate[bot] and wd-David authored Jun 3, 2023
1 parent d2e5b73 commit ec5f47d
Show file tree
Hide file tree
Showing 4 changed files with 414 additions and 314 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
node: [14, 16, 18]
node: [18]
fail-fast: true
runs-on: ${{ matrix.os }}

Expand All @@ -29,22 +29,23 @@ jobs:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'

- uses: pnpm/action-setup@v2.2.4
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,26 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: 'https://registry.npmjs.org'

- name: Install pnpm
uses: pnpm/[email protected]
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,25 @@
"dist"
],
"devDependencies": {
"@types/node": "18.16.3",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"esbuild": "0.17.18",
"eslint": "8.39.0",
"@types/node": "18.16.16",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"esbuild": "0.17.19",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"execa": "7.1.1",
"nodemon": "2.0.22",
"pino": "8.11.0",
"pino-loki": "2.0.4",
"pino": "8.14.1",
"pino-loki": "2.1.3",
"pino-pretty": "10.0.0",
"pkgroll": "1.9.0",
"pkgroll": "1.10.0",
"prettier": "2.8.8",
"standard-version": "9.5.0",
"thread-stream": "2.3.0",
"tsx": "3.12.7",
"typescript": "5.0.4",
"vitest": "0.30.1"
"typescript": "5.1.3",
"vitest": "0.31.4"
},
"peerDependencies": {
"esbuild": "^0.17.1"
Expand Down
Loading

0 comments on commit ec5f47d

Please sign in to comment.