From 4190b5edd77f9258c702ad684e17984888597968 Mon Sep 17 00:00:00 2001 From: Priyagupta108 Date: Wed, 27 May 2026 14:22:04 +0530 Subject: [PATCH 1/2] docs: add note about latest* rollForward support in global.json --- README.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ee6b18181..a1c8c91db 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,8 @@ steps: working-directory: csharp ``` +> **Note**: The action supports `latest*` variants of the [`rollForward`](https://learn.microsoft.com/en-us/dotnet/core/tools/global-json#rollforward) field in `global.json`. When set to `latestPatch`, `latestFeature`, `latestMinor`, or `latestMajor`, the action installs the appropriate SDK version. + ## Caching NuGet Packages The action has a built-in functionality for caching and restoring dependencies. It uses [toolkit/cache](https://github.com/actions/toolkit/tree/main/packages/cache) under the hood for caching global packages data but requires less configuration settings. The `cache` input is optional, and caching is turned off by default. diff --git a/package-lock.json b/package-lock.json index 2f50c9da5..7c22f58c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "setup-dotnet", - "version": "5.0.1", + "version": "5.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "setup-dotnet", - "version": "5.0.1", + "version": "5.3.0", "license": "MIT", "dependencies": { "@actions/cache": "^5.0.5", diff --git a/package.json b/package.json index a7b0afb24..d56a35e20 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-dotnet", - "version": "5.0.1", + "version": "5.3.0", "private": true, "description": "setup dotnet action", "main": "dist/setup/index.js", From 7ff94013aeb9e0d06f8430105498cb05553768a3 Mon Sep 17 00:00:00 2001 From: Priyagupta108 Date: Wed, 27 May 2026 14:36:06 +0530 Subject: [PATCH 2/2] update health check options for squid proxy in e2e tests --- .github/workflows/e2e-tests.yml | 5 +++++ README.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 406bf0e86..dc6f3e899 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -577,6 +577,11 @@ jobs: image: ubuntu/squid:latest ports: - 3128:3128 + options: >- + --health-cmd "bash -c ' **Note**: The action supports `latest*` variants of the [`rollForward`](https://learn.microsoft.com/en-us/dotnet/core/tools/global-json#rollforward) field in `global.json`. When set to `latestPatch`, `latestFeature`, `latestMinor`, or `latestMajor`, the action installs the appropriate SDK version. +> **Note**: The action supports `latest*` variants of the [rollForward](https://learn.microsoft.com/en-us/dotnet/core/tools/global-json#rollforward) field in `global.json`. When set to `latestPatch`, `latestFeature`, `latestMinor`, or `latestMajor`, the action installs the appropriate SDK version. ## Caching NuGet Packages The action has a built-in functionality for caching and restoring dependencies. It uses [toolkit/cache](https://github.com/actions/toolkit/tree/main/packages/cache) under the hood for caching global packages data but requires less configuration settings. The `cache` input is optional, and caching is turned off by default.