You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cache keys now incorporate toolchain-specific metadata, eliminating version conflicts when switching between golang versions in your workflows.
44
+
Cache keys now incorporate the `toolchain` directive version from `go.mod`, eliminating cache conflicts when switching between different toolchain versions within the same Go minor release.
51
45
52
46
For more details, see the [full release notes](https://github.com/actions/setup-go/releases/tag/v6.0.0).
53
47
@@ -347,12 +341,16 @@ jobs:
347
341
348
342
| Syntax Type | Example | Description |
349
343
|-------------|---------|-------------|
350
-
| Specific version | `1.23.2` | Exact version |
351
-
| Semantic range | `^1.23.0` | Compatible with 1.23.0 |
352
-
| Comparison operators | `>=1.22.0` | Version 1.22.0 or higher |
0 commit comments