diff options
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | tools/Use-VC.ps1 | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97b538ef..8d84ba18 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v2 - name: Restore Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/vcpkg/archives key: vcpkg-${{ runner.os }} @@ -48,7 +48,7 @@ jobs: - uses: actions/checkout@v2 - name: Restore Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/AppData/Local/vcpkg/archives key: vcpkg-${{ runner.os }} diff --git a/tools/Use-VC.ps1 b/tools/Use-VC.ps1 index fc039142..ad3dbcba 100644 --- a/tools/Use-VC.ps1 +++ b/tools/Use-VC.ps1 @@ -20,5 +20,5 @@ function Use-VC { } } Pop-Location - Write-Host "Visual Studio 2019 Command Prompt variables set." -ForegroundColor Yellow + Write-Host "Visual Studio Command Prompt variables set." -ForegroundColor Yellow } |