Skip to content

Commit 2f43ef1

Browse files
authored
Merge pull request #89 from sgratzl/release/v4.4.3
Release v4.4.3
2 parents 4a89136 + 6a11499 commit 2f43ef1

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/create_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
echo "next_tag=$(npm version --no-git-tag-version ${{ github.event.inputs.versionName }} --preid ${{ github.event.inputs.preid }})" >> $GITHUB_OUTPUT
3030
- name: Create pull request into main
31-
uses: peter-evans/create-pull-request@v4
31+
uses: peter-evans/create-pull-request@v7
3232
with:
3333
branch: release/${{ steps.version.outputs.next_tag }}
3434
commit-message: 'chore: release ${{ steps.version.outputs.next_tag }}'

.github/workflows/deploy_website.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
${{ runner.os }}-yarn2-v5
3535
- run: yarn install
3636
- run: yarn docs:build
37-
- uses: actions/configure-pages@v4
37+
- uses: actions/configure-pages@v5
3838
- uses: actions/upload-pages-artifact@v3
3939
with:
4040
path: docs/.vitepress/dist

.github/workflows/release_helper.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "releasing ${{ steps.extract_version.outputs.version }} with tag ${{ steps.extract_version.outputs.npm_tag }}"
3232
- name: Create Release
3333
id: create_release
34-
uses: release-drafter/release-drafter@v5
34+
uses: release-drafter/release-drafter@v6
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
with:
@@ -70,7 +70,7 @@ jobs:
7070
- run: yarn build
7171
- run: yarn pack
7272
- name: Upload Release Asset
73-
uses: AButler/upload-release-assets@v2.0.2
73+
uses: AButler/upload-release-assets@v3.0
7474
with:
7575
files: 'package.tgz'
7676
repo-token: ${{ secrets.GITHUB_TOKEN }}

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chartjs-plugin-hierarchical",
33
"description": "Chart.js module for hierarchical categories",
4-
"version": "4.4.2",
4+
"version": "4.4.3",
55
"author": {
66
"name": "Samuel Gratzl",
77
"email": "[email protected]",
@@ -36,8 +36,7 @@
3636
"require": "./build/index.cjs",
3737
"scripts": "./build/index.umd.min.js",
3838
"types": "./build/index.d.ts"
39-
},
40-
"./.pnp.cjs": "./.pnp.cjs"
39+
}
4140
},
4241
"sideEffects": false,
4342
"files": [

0 commit comments

Comments
 (0)