diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d70590c..44f15d43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,10 +24,10 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - name: Use Node.js 16.x - uses: actions/setup-node@v1 + - name: Use Node.js 18.x + uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Run NPM CI run: npm install diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0703ff78..6fda4f9f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,17 +18,17 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Use Node.js 16.x - uses: actions/setup-node@v1 + - name: Use Node.js 18.x + uses: actions/setup-node@v3 with: - node-version: "16.x" + node-version: "18.x" - run: npm ci - run: npm run build --if-present - run: rsync -a package.json README.md ./dist/ - name: Semantic Release - uses: cycjimmy/semantic-release-action@v2 + uses: cycjimmy/semantic-release-action@v3 with: - semantic_version: 19.0.2 # It is recommended to specify specifying version range + semantic_version: 19.0.5 # It is recommended to specify specifying version range # for semantic-release. env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}