Compare commits

..

No commits in common. 'main' and 'v5.2.0' have entirely different histories.
main ... v5.2.0

@ -495,7 +495,7 @@ jobs:
test-proxy:
runs-on: ubuntu-22.04
container:
image: mcr.microsoft.com/devcontainers/dotnet:10.0
image: ubuntu:22.04
options: --dns 127.0.0.1
services:
squid-proxy:
@ -508,6 +508,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Powershell
run: |
apt-get update
apt-get install -y wget apt-transport-https software-properties-common
wget -q "https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb"
dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
apt-get update
apt-get install -y powershell
- name: Clear toolcache
shell: pwsh
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}

Loading…
Cancel
Save