diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 28701ba..60c9fc8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,19 +12,9 @@ jobs: - name: Setup repo uses: actions/checkout@v2 - name: Setup node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 16.x - - name: Find cache - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" - - name: Restore cache - uses: actions/cache@v2 - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - name: Install dependencies run: yarn install --frozen-lockfile --check-files --ignore-scripts - name: Install scripts dependencies diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index e7bb6ab..926d25c 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -10,7 +10,7 @@ jobs: if: ${{ github.event.issue.pull_request && github.event.issue.user.login == github.event.comment.user.login && startsWith(github.event.comment.body, '/changelog-entry ') }} steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: node-version: 18 - name: Checkout Pull Request @@ -42,4 +42,4 @@ jobs: git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)" git add CHANGELOG.md git commit -m "update CHANGELOG.md" - git push \ No newline at end of file + git push diff --git a/.github/workflows/plugin-tests.yml b/.github/workflows/plugin-tests.yml index e47591d..68586dd 100644 --- a/.github/workflows/plugin-tests.yml +++ b/.github/workflows/plugin-tests.yml @@ -12,19 +12,9 @@ jobs: - name: Setup repo uses: actions/checkout@v2 - name: Setup node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 16.x - - name: Find cache - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" - - name: Restore cache - uses: actions/cache@v2 - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - name: Install dependencies run: yarn install --frozen-lockfile --check-files --ignore-scripts - name: Run plugin tests