From 6e4c3478d713bd8e48fee02a89cca1944d081db5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 02:35:20 +0000 Subject: [PATCH 1/5] Bump braces from 3.0.2 to 3.0.3 Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md) - [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3) --- updated-dependencies: - dependency-name: braces dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 47ff5fc3a..d0ef42c4a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1278,11 +1278,13 @@ } }, "node_modules/braces": { - "version": "3.0.2", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "license": "MIT", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -1638,7 +1640,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "license": "MIT", "dependencies": { @@ -1839,6 +1843,8 @@ }, "node_modules/is-number": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "license": "MIT", "engines": { @@ -3125,6 +3131,8 @@ }, "node_modules/to-regex-range": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "license": "MIT", "dependencies": { From dea69a5474da9e882c240f4d7f421ec9b7a072bf Mon Sep 17 00:00:00 2001 From: MoChilia Date: Thu, 13 Feb 2025 11:40:05 +0800 Subject: [PATCH 2/5] remove libicu and update powershell version --- .github/workflows/azure-login-positive.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/azure-login-positive.yml b/.github/workflows/azure-login-positive.yml index 351f230c0..9a51e4ae4 100644 --- a/.github/workflows/azure-login-positive.yml +++ b/.github/workflows/azure-login-positive.yml @@ -266,10 +266,8 @@ jobs: run: | apt-get update apt-get install -y wget - wget https://mirror.it.ubc.ca/ubuntu/pool/main/i/icu/libicu72_72.1-3ubuntu3_amd64.deb - dpkg -i libicu72_72.1-3ubuntu3_amd64.deb - wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.3/powershell_7.4.3-1.deb_amd64.deb - dpkg -i powershell_7.4.3-1.deb_amd64.deb + wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell_7.5.0-1.deb_amd64.deb + dpkg -i powershell_7.5.0-1.deb_amd64.deb - name: Check Powershell Version shell: pwsh From 1651bbf4cfba159dc0925f77faadf6186360d170 Mon Sep 17 00:00:00 2001 From: MoChilia Date: Thu, 13 Feb 2025 11:50:11 +0800 Subject: [PATCH 3/5] apt install libicu72 --- .github/workflows/azure-login-positive.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/azure-login-positive.yml b/.github/workflows/azure-login-positive.yml index 9a51e4ae4..7cd4edb10 100644 --- a/.github/workflows/azure-login-positive.yml +++ b/.github/workflows/azure-login-positive.yml @@ -266,6 +266,8 @@ jobs: run: | apt-get update apt-get install -y wget + apt install libicu72 + dpkg -s libicu72 wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell_7.5.0-1.deb_amd64.deb dpkg -i powershell_7.5.0-1.deb_amd64.deb @@ -298,7 +300,7 @@ jobs: with: client-id: ${{ secrets.SP1_CLIENT_ID }} tenant-id: ${{ secrets.SP1_TENANT_ID }} - subscription-id: ${{ secrets.SP1_SUBSCRIPTION_ID }} + subscriptionlibicu-id: ${{ secrets.SP1_SUBSCRIPTION_ID }} enable-AzPSSession: true - name: Run Azure Cli again From 6efec2c78fbc3fc250f3b69aea7884c9135c708b Mon Sep 17 00:00:00 2001 From: MoChilia Date: Thu, 13 Feb 2025 12:47:33 +0800 Subject: [PATCH 4/5] change installation url --- .github/workflows/azure-login-positive.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/azure-login-positive.yml b/.github/workflows/azure-login-positive.yml index 7cd4edb10..731ef045b 100644 --- a/.github/workflows/azure-login-positive.yml +++ b/.github/workflows/azure-login-positive.yml @@ -266,8 +266,8 @@ jobs: run: | apt-get update apt-get install -y wget - apt install libicu72 - dpkg -s libicu72 + wget https://ftp.debian.org/debian/pool/main/i/icu/libicu72_72.1-3_amd64.deb + dpkg -i libicu72_72.1-3_amd64.deb wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell_7.5.0-1.deb_amd64.deb dpkg -i powershell_7.5.0-1.deb_amd64.deb From 5b5173f7ba1e7d564670a22b25cfe065361454b4 Mon Sep 17 00:00:00 2001 From: MoChilia Date: Thu, 13 Feb 2025 13:09:09 +0800 Subject: [PATCH 5/5] fix typo --- .github/workflows/azure-login-positive.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/azure-login-positive.yml b/.github/workflows/azure-login-positive.yml index 731ef045b..16d15019c 100644 --- a/.github/workflows/azure-login-positive.yml +++ b/.github/workflows/azure-login-positive.yml @@ -300,7 +300,7 @@ jobs: with: client-id: ${{ secrets.SP1_CLIENT_ID }} tenant-id: ${{ secrets.SP1_TENANT_ID }} - subscriptionlibicu-id: ${{ secrets.SP1_SUBSCRIPTION_ID }} + subscription-id: ${{ secrets.SP1_SUBSCRIPTION_ID }} enable-AzPSSession: true - name: Run Azure Cli again