From 58d1315dadb26e9fda23f2442273555dfc6c3596 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Dec 2025 10:13:41 +0000 Subject: [PATCH] Bump the all group across 1 directory with 5 updates Bumps the all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v7) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 38 +++++++++++++++++------------------ .github/workflows/publish.yml | 2 +- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 08b3b30..8ce178a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: recursive @@ -24,13 +24,13 @@ jobs: echo "ref=$( cd native/polserver && git log -1 --format=%h )" >> $GITHUB_OUTPUT - name: Cache polserver-build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: native/build/polserver key: linux-polserver-build-full-${{ steps.get-ref.outputs.ref }} - name: Cache polserver-src - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: native/polserver key: linux-polserver-src-full-${{ steps.get-ref.outputs.ref }} @@ -40,7 +40,7 @@ jobs: - run: npm test - name: Upload Extension Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: vscode-escript-native.linux-x64 path: native/build/Release/vscode-escript-native.linux-x64.node @@ -50,7 +50,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: recursive @@ -61,13 +61,13 @@ jobs: echo "ref=$( cd native/polserver && git log -1 --format=%h )" >> $GITHUB_OUTPUT - name: Cache polserver-build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: native/build/polserver key: windows-polserver-build-full-${{ steps.get-ref.outputs.ref }} - name: Cache polserver-src - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: native/polserver key: windows-polserver-src-full-${{ steps.get-ref.outputs.ref }} @@ -79,7 +79,7 @@ jobs: - run: npm test - name: Upload Extension Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: vscode-escript-native.win32-x64 path: native/build/Release/vscode-escript-native.win32-x64.node @@ -89,7 +89,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: recursive @@ -99,13 +99,13 @@ jobs: echo "ref=$( cd native/polserver && git log -1 --format=%h )" >> $GITHUB_OUTPUT - name: Cache polserver-build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: native/build/polserver key: mac-polserver-build-full-${{ steps.get-ref.outputs.ref }} - name: Cache polserver-src - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: native/polserver key: mac-polserver-src-full-${{ steps.get-ref.outputs.ref }} @@ -123,7 +123,7 @@ jobs: - run: npm test - name: Upload Extension Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: vscode-escript-native.darwin-universal path: native/build/Release/vscode-escript-native.darwin-universal.node @@ -134,7 +134,7 @@ jobs: needs: [windows, mac, linux] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: recursive @@ -144,13 +144,13 @@ jobs: echo "ref=$( cd native/polserver && git log -1 --format=%h )" >> $GITHUB_OUTPUT - name: Cache polserver-build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: native/build/polserver key: linux-polserver-build-full-${{ steps.get-ref.outputs.ref }} - name: Cache polserver-src - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: native/polserver key: linux-polserver-src-full-${{ steps.get-ref.outputs.ref }} @@ -158,19 +158,19 @@ jobs: - run: npm install - name: Download Temporary Artifact darwin-universal - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: vscode-escript-native.darwin-universal path: native/build/Release - name: Download Temporary Artifact win32-x64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: vscode-escript-native.win32-x64 path: native/build/Release - name: Download Temporary Artifact linux-x64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: vscode-escript-native.linux-x64 path: native/build/Release @@ -178,7 +178,7 @@ jobs: - run: npx vsce package - name: Upload Extension Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: escript-lsp-universal path: escript-lsp-*.vsix diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 872233e..fa9c573 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 20