diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 10716224..9113cd7e 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -64,19 +64,19 @@ jobs: node-version-file: ".nvmrc" - name: Cache extension node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: extensions/vscode/node_modules key: ${{ runner.os }}-node-${{ hashFiles('extensions/vscode/package-lock.json') }} - name: Cache core node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: core/node_modules key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }} - name: Cache gui node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gui/node_modules key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }} diff --git a/.github/workflows/preview.yaml b/.github/workflows/preview.yaml index a04591c8..dd7a31ac 100644 --- a/.github/workflows/preview.yaml +++ b/.github/workflows/preview.yaml @@ -55,19 +55,19 @@ jobs: node-version-file: ".nvmrc" - name: Cache extension node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: extensions/vscode/node_modules key: ${{ runner.os }}-node-${{ hashFiles('extensions/vscode/package-lock.json') }} - name: Cache core node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: core/node_modules key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }} - name: Cache gui node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gui/node_modules key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }} diff --git a/.github/workflows/ts-check.yaml b/.github/workflows/ts-check.yaml index 19398899..81d25dff 100644 --- a/.github/workflows/ts-check.yaml +++ b/.github/workflows/ts-check.yaml @@ -23,25 +23,25 @@ jobs: node-version-file: ".nvmrc" - name: Cache extension node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: extensions/vscode/node_modules key: ${{ runner.os }}-node-${{ hashFiles('extensions/vscode/package-lock.json') }} - name: Cache core node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: core/node_modules key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }} - name: Cache gui node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gui/node_modules key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }} - name: Cache binary node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: binary/node_modules key: ${{ runner.os }}-node-${{ hashFiles('binary/package-lock.json') }}