From 2f40dde84fde36f5b9b81ededd7090c5159d9885 Mon Sep 17 00:00:00 2001 From: Dragan Filipovic Date: Fri, 28 Oct 2022 04:01:24 +0200 Subject: [PATCH] fix: plugins versions --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce63884..b658860 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,9 +16,9 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix['node-version'] }} - name: Install dependencies @@ -28,11 +28,11 @@ jobs: - name: Run Tests run: npm test --if-present - name: Release - uses: cycjimmy/semantic-release-action@v2 + uses: cycjimmy/semantic-release-action@v3 with: dry_run: false extra_plugins: | - @semantic-release/changelog@3.0.0 + @semantic-release/changelog @semantic-release/git env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}