From 03e1674dca1052ec58c08d47ad5f74b70353849c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 14:44:17 +0000 Subject: [PATCH 1/3] Bump tar from 6.2.0 to 6.2.1 Bumps [tar](https://github.com/isaacs/node-tar) from 6.2.0 to 6.2.1. - [Release notes](https://github.com/isaacs/node-tar/releases) - [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md) - [Commits](https://github.com/isaacs/node-tar/compare/v6.2.0...v6.2.1) --- updated-dependencies: - dependency-name: tar dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6767b77..d3d1513 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7764,9 +7764,9 @@ } }, "node_modules/tar": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", "inBundle": true, "dependencies": { "chownr": "^2.0.0", From 36b822cc7c2c1e239123119e9b74ee2ffb6df115 Mon Sep 17 00:00:00 2001 From: Aaron Feledy Date: Tue, 23 Jun 2026 15:07:50 -0500 Subject: [PATCH 2/3] fix docs config lint --- docs/.vitepress/config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vitepress/config.mjs b/docs/.vitepress/config.mjs index 648be27..2fb46a9 100644 --- a/docs/.vitepress/config.mjs +++ b/docs/.vitepress/config.mjs @@ -59,4 +59,4 @@ function sidebar() { }, {text: 'Guides', link: '/guides', activeMatch: '/guides'}, ]; -}; \ No newline at end of file +}; From 332e9c877b893671e76860335a5f8d40da918c01 Mon Sep 17 00:00:00 2001 From: Aaron Feledy Date: Tue, 23 Jun 2026 15:15:09 -0500 Subject: [PATCH 3/3] ci: update setup-node for cache compatibility --- .github/workflows/pr-basic-tests.yml | 2 +- .github/workflows/pr-chrome-headless-tests.yml | 2 +- .github/workflows/pr-drupal8-sync-tests.yml | 2 +- .github/workflows/pr-linter.yml | 2 +- .github/workflows/pr-mariadb-tests.yml | 2 +- .github/workflows/pr-memcached-tests.yml | 2 +- .github/workflows/pr-mongodb-tests.yml | 2 +- .github/workflows/pr-mysql-tests.yml | 2 +- .github/workflows/pr-php-tests.yml | 2 +- .github/workflows/pr-postgresql-tests.yml | 2 +- .github/workflows/pr-redis-tests.yml | 2 +- .github/workflows/pr-solr-tests.yml | 2 +- .github/workflows/pr-unit-tests.yml | 2 +- .github/workflows/pr-varnish-tests.yml | 2 +- .github/workflows/release.yml | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/pr-basic-tests.yml b/.github/workflows/pr-basic-tests.yml index 614fbd9..2c9c906 100644 --- a/.github/workflows/pr-basic-tests.yml +++ b/.github/workflows/pr-basic-tests.yml @@ -24,7 +24,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-chrome-headless-tests.yml b/.github/workflows/pr-chrome-headless-tests.yml index 1d4890f..4037238 100644 --- a/.github/workflows/pr-chrome-headless-tests.yml +++ b/.github/workflows/pr-chrome-headless-tests.yml @@ -24,7 +24,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-drupal8-sync-tests.yml b/.github/workflows/pr-drupal8-sync-tests.yml index 5e23d20..edc4c4b 100644 --- a/.github/workflows/pr-drupal8-sync-tests.yml +++ b/.github/workflows/pr-drupal8-sync-tests.yml @@ -25,7 +25,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-linter.yml b/.github/workflows/pr-linter.yml index 29a6d74..6f4ebae 100644 --- a/.github/workflows/pr-linter.yml +++ b/.github/workflows/pr-linter.yml @@ -17,7 +17,7 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-mariadb-tests.yml b/.github/workflows/pr-mariadb-tests.yml index 7497a25..ea719d3 100644 --- a/.github/workflows/pr-mariadb-tests.yml +++ b/.github/workflows/pr-mariadb-tests.yml @@ -30,7 +30,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-memcached-tests.yml b/.github/workflows/pr-memcached-tests.yml index c46cc30..535f4b8 100644 --- a/.github/workflows/pr-memcached-tests.yml +++ b/.github/workflows/pr-memcached-tests.yml @@ -26,7 +26,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-mongodb-tests.yml b/.github/workflows/pr-mongodb-tests.yml index 2ecfc2a..e896989 100644 --- a/.github/workflows/pr-mongodb-tests.yml +++ b/.github/workflows/pr-mongodb-tests.yml @@ -27,7 +27,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-mysql-tests.yml b/.github/workflows/pr-mysql-tests.yml index b4c57ef..e5ed355 100644 --- a/.github/workflows/pr-mysql-tests.yml +++ b/.github/workflows/pr-mysql-tests.yml @@ -28,7 +28,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-php-tests.yml b/.github/workflows/pr-php-tests.yml index 594f894..0681e98 100644 --- a/.github/workflows/pr-php-tests.yml +++ b/.github/workflows/pr-php-tests.yml @@ -32,7 +32,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-postgresql-tests.yml b/.github/workflows/pr-postgresql-tests.yml index 475e424..af83228 100644 --- a/.github/workflows/pr-postgresql-tests.yml +++ b/.github/workflows/pr-postgresql-tests.yml @@ -29,7 +29,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-redis-tests.yml b/.github/workflows/pr-redis-tests.yml index e9db61c..a3206f6 100644 --- a/.github/workflows/pr-redis-tests.yml +++ b/.github/workflows/pr-redis-tests.yml @@ -29,7 +29,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-solr-tests.yml b/.github/workflows/pr-solr-tests.yml index 88202c0..7c5e117 100644 --- a/.github/workflows/pr-solr-tests.yml +++ b/.github/workflows/pr-solr-tests.yml @@ -33,7 +33,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-unit-tests.yml b/.github/workflows/pr-unit-tests.yml index 0ff3c4b..5d491c9 100644 --- a/.github/workflows/pr-unit-tests.yml +++ b/.github/workflows/pr-unit-tests.yml @@ -19,7 +19,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/pr-varnish-tests.yml b/.github/workflows/pr-varnish-tests.yml index 7b3a19d..80e2a8f 100644 --- a/.github/workflows/pr-varnish-tests.yml +++ b/.github/workflows/pr-varnish-tests.yml @@ -29,7 +29,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: npm diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 872f8e7..92f9e38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} registry-url: https://registry.npmjs.org