Skip to content

Commit 06ff21e

Browse files
ci: bump actions versions
chore(deps): update pnpm to v7.33.6 (#42) Co-authored-by: JounQin <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update vitest monorepo to ^0.34.6 (#45) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update dependency @changesets/cli to ^2.26.2 (#37) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> fix(deps): update dependency rehype-parse to ^8.0.5 (#43) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> fix(deps): update dependency rehype-stringify to ^9.0.4 (#44) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update dependency type-coverage to ^2.27.0 (#38) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update dependency typescript to ^4.9.5 (#39) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update dependency unplugin-auto-import to ^0.16.7 (#40) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3b9a307 commit 06ff21e

File tree

6 files changed

+518
-319
lines changed

6 files changed

+518
-319
lines changed

.github/workflows/ci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,17 @@ jobs:
1313
- 14
1414
- 16
1515
- 18
16+
- 20
1617
runs-on: ubuntu-latest
1718
steps:
1819
- name: Checkout Repo
19-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2021

2122
- name: Setup pnpm
2223
uses: pnpm/action-setup@v2
23-
with:
24-
version: latest
2524

2625
- name: Setup Node.js ${{ matrix.node }}
27-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2827
with:
2928
node-version: ${{ matrix.node }}
3029
cache: pnpm

.github/workflows/codeql.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: "CodeQL"
1+
name: 'CodeQL'
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: ['main']
66
pull_request:
7-
branches: [ "main" ]
7+
branches: ['main']
88
schedule:
9-
- cron: "4 21 * * 1"
9+
- cron: '4 21 * * 1'
1010

1111
jobs:
1212
analyze:
@@ -20,11 +20,11 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
language: [ javascript ]
23+
language: [javascript]
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v2
@@ -38,4 +38,4 @@ jobs:
3838
- name: Perform CodeQL Analysis
3939
uses: github/codeql-action/analyze@v2
4040
with:
41-
category: "/language:${{ matrix.language }}"
41+
category: '/language:${{ matrix.language }}'

.github/workflows/release.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,16 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
1818

1919
- name: Setup pnpm
2020
uses: pnpm/action-setup@v2
21-
with:
22-
version: latest
2321

2422
- name: Setup Node.js LTS
25-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v4
2624
with:
2725
node-version: lts/*
2826
cache: pnpm

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![GitHub Actions](https://github.com/un-ts/cf-cleaner/workflows/CI/badge.svg)](https://github.com/un-ts/cf-cleaner/actions/workflows/ci.yml)
44
[![Codecov](https://img.shields.io/codecov/c/github/un-ts/cf-cleaner.svg)](https://codecov.io/gh/un-ts/cf-cleaner)
5-
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/un-ts/cf-cleaner.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/un-ts/cf-cleaner/context:javascript)
65
[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fun-ts%2Fcf-cleaner%2Fmain%2Fpackage.json)](https://github.com/plantain-00/type-coverage)
76
[![npm](https://img.shields.io/npm/v/cf-cleaner.svg)](https://www.npmjs.com/package/cf-cleaner)
87
[![GitHub Release](https://img.shields.io/github/release/un-ts/cf-cleaner)](https://github.com/un-ts/cf-cleaner/releases)

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"repository": "git+https://github.com/un-ts/cf-cleaner.git",
77
"author": "JounQin <[email protected]>",
88
"license": "MIT",
9-
"packageManager": "pnpm@7.12.2",
9+
"packageManager": "pnpm@7.33.6",
1010
"engines": {
1111
"node": ">=14.18.0"
1212
},
@@ -45,9 +45,9 @@
4545
"commander": "^9.4.1",
4646
"hast-util-is-element": "^2.1.3",
4747
"rehype-format": "^4.0.1",
48-
"rehype-parse": "^8.0.4",
48+
"rehype-parse": "^8.0.5",
4949
"rehype-preset-minify": "^6.0.0",
50-
"rehype-stringify": "^9.0.3",
50+
"rehype-stringify": "^9.0.4",
5151
"unified": "^10.1.2",
5252
"unified-stream": "^2.0.0",
5353
"unist-util-remove": "^3.1.1",
@@ -56,13 +56,13 @@
5656
"devDependencies": {
5757
"@1stg/lib-config": "^10.3.0",
5858
"@changesets/changelog-github": "^0.4.8",
59-
"@changesets/cli": "^2.26.0",
59+
"@changesets/cli": "^2.26.2",
6060
"@types/node": "^18.7.18",
61-
"@vitest/coverage-istanbul": "^0.23.4",
62-
"type-coverage": "^2.22.0",
63-
"typescript": "^4.8.4",
64-
"unplugin-auto-import": "^0.11.4",
65-
"vitest": "^0.23.4"
61+
"@vitest/coverage-istanbul": "^0.34.6",
62+
"type-coverage": "^2.27.0",
63+
"typescript": "^4.9.5",
64+
"unplugin-auto-import": "^0.16.7",
65+
"vitest": "^0.34.6"
6666
},
6767
"typeCoverage": {
6868
"atLeast": 100,

0 commit comments

Comments
 (0)