diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5bf46da..b85018a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,9 +16,9 @@ jobs: with: python-version: 3.7 - name: set up node # we need node for for semantic release - uses: actions/setup-node@v2.1.2 + uses: actions/setup-node@v4 with: - node-version: 14.2.0 + node-version: 22.2.0 - name: install python dependencies run: | pip install -r dev-requirements.txt @@ -29,8 +29,8 @@ jobs: - name: run semantic release id: new_release run: | - nextRelease="`npx semantic-release@^17.0.0 --dryRun | grep -oP 'Published release \K.*? ' || true`" - npx semantic-release@^17.0.0 + nextRelease="`npx semantic-release@^23.1.1 --dryRun | grep -oP 'Published release \K.*? ' || true`" + npx semantic-release@^23.1.1 echo "::set-output name=tag::$nextRelease" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.releaserc.json b/.releaserc.json index 0459b65..8002347 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -2,7 +2,13 @@ "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", - "@semantic-release/github", + [ + "@semantic-release/github", + { + "successComment": false, + "failTitle": false + } + ], [ "@semantic-release/exec", { diff --git a/dev-requirements.txt b/dev-requirements.txt index 58ea70e..8805d9b 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,4 +1,4 @@ -pytest==6.2.3 +pytest==6.2.5 twine==3.4.1 wheel==0.36.2 setuptools==56.0.0