diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a6c79f..b4aedea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Copy secrets to gradle.properties run: | @@ -31,6 +31,14 @@ jobs: env: GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUB_KEY }} GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUB_SEC }} + + - name: Set up node + uses: actions/setup-node@v4 + with: + node-version: '14' + + - name: Install conventionalcommits + run: npm i -D conventional-changelog-conventionalcommits - name: Semantic Release uses: cycjimmy/semantic-release-action@v4.1.0