9dd2a3e573 
								
							 
						 
						
							
							
								
								Merge  461004e4c9 into  faf52423ec 
							
							
							
						 
						
							2025-10-28 12:56:30 -05:00  
				
					
						
							
							
								 
						
							
								faf52423ec 
								
							 
						 
						
							
							
								
								Add support for .tool-versions file in setup-go, update workflow ( #673 )  
							
							... 
							
							
							
							* setup go in local
* add .tool-versions file support 
							
						 
						
							2025-10-28 10:26:52 -05:00  
				
					
						
							
							
								 
						
							
								7bc60db215 
								
							 
						 
						
							
							
								
								Fall back to downloading from go.dev/dl instead of storage.googleapis.com/golang ( #665 )  
							
							... 
							
							
							
							* Fall back to downloading from dl.google.com/go instead of storage.googleapis.com/golang
* Use go.dev/dl instead 
							
						 
						
							2025-10-27 15:43:21 -05:00  
				
					
						
							
							
								 
						
							
								c0137caad7 
								
							 
						 
						
							
							
								
								Bump eslint-config-prettier from 10.0.1 to 10.1.8 and document breaking changes in v6 ( #617 )  
							
							... 
							
							
							
							* Bump eslint-config-prettier from 10.0.1 to 10.1.8
---
updated-dependencies:
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* doc update
* doc update
* update
* doc update
* doc update
* doc update
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com> 
							
						 
						
							2025-09-15 15:23:43 -05:00  
				
					
						
							
							
								 
						
							
								4469467582 
								
							 
						 
						
							
							
								
								Bump actions/checkout from 4 to 5 ( #631 )  
							
							... 
							
							
							
							Bumps [actions/checkout](https://github.com/actions/checkout ) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2025-09-03 21:56:07 -05:00  
				
					
						
							
							
								 
						
							
								e093d1e9bb 
								
							 
						 
						
							
							
								
								Node 24 upgrade ( #624 )  
							
							... 
							
							
							
							* Node 24 upgrade
Doing an upgrade for node 24, node 24 is stricter with types so need to add a type for achitecture
* format
* package updates
* fix for check failures
* upgrade @types/node
* update package.json version
* check failure fix
* package-lock.json update
* update node24
* npm run format
* npm run format
* node update from the workflows
* Upgrade `actions/checkout` to v5 and `actions/setup-go` to v6 in README.md
---------
Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
Co-authored-by: Priya Gupta <147705955+priyagupta108@users.noreply.github.com> 
							
						 
						
							2025-09-03 21:54:45 -05:00  
				
					
						
							
							
								 
						
							
								1d76b952eb 
								
							 
						 
						
							
							
								
								Improve toolchain handling ( #460 )  
							
							... 
							
							
							
							* Configure environment to avoid toolchain installs
Force `go` to always use the local toolchain (i.e. the one the one that
shipped with the go command being run) via setting the `GOTOOLCHAIN`
environment variable to `local`[1]:
> When GOTOOLCHAIN is set to local, the go command always runs the
bundled Go toolchain.
This is how things are setup in the official Docker images (e.g.[2], see
also the discussion around that change[3]). The motivation behind this
is to:
* Reduce duplicate work: if the `toolchain` version in `go.mod` was
  greated than the `go` version, the version from the `go` directive
  would be installed, then Go would detect the `toolchain` version and
  additionally install that
* Avoid Unexpected behaviour: if you specify this action runs with some Go
  version (e.g. `1.21.0`) but your go.mod contains a `toolchain` or `go`
  directive for a newer version (e.g. `1.22.0`) then, without any other
  configuration/environment setup, any go commands will be run using go
  `1.22.0`
This will be a **breaking change** for some workflows. Given a `go.mod`
like:
    module proj
    go 1.22.0
Then running any `go` command, e.g. `go mod tidy`, in an environment
where only go versions before `1.22.0` were installed would previously
trigger a toolchain download of Go `1.22.0` and that version being used
to execute the command. With this change the above would error out with
something like:
> go: go.mod requires go >= 1.22.0 (running go 1.21.7;
GOTOOLCHAIN=local)
[1] https://go.dev/doc/toolchain#select 
[2] dae3405a32/Dockerfile-linux.template (L163)https://github.com/docker-library/golang/issues/472 
* Prefer installing version from `toolchain` directive
Prefer this over the version from the `go` directive. Per the docs[1]
> The toolchain line declares a suggested toolchain to use with the
module or workspace
It seems reasonable to use this, since running this action in a
directory containing a `go.mod` (or `go.work`) suggests the user is
wishing to work _with the module or workspace_.
Link: https://go.dev/doc/toolchain#config  [1]
Issue: https://github.com/actions/setup-go/issues/457 
* squash! Configure environment to avoid toolchain installs
Only modify env if `GOTOOLCHAIN` is not set
* squash! Prefer installing version from `toolchain` directive
Avoid installing from `toolchain` if `GOTOOLCHAIN` is `local`, also
better regex for matching toolchain directive 
							
						 
						
							2025-08-28 22:21:56 -05:00  
				
					
						
							
							
								 
						
							
								e75c3e80bc 
								
							 
						 
						
							
							
								
								Bump `form-data` to bring in fix for critical vulnerability ( #618 )  
							
							... 
							
							
							
							The vulnerability:
    $ npm audit --audit-level=high
    # npm audit report
    form-data  >=4.0.0 <4.0.4 || <2.5.4
    Severity: critical
    form-data uses unsafe random function in form-data for choosing boundary - https://github.com/advisories/GHSA-fjxv-7rqg-78g4 
    form-data uses unsafe random function in form-data for choosing boundary - https://github.com/advisories/GHSA-fjxv-7rqg-78g4 
    fix available via `npm audit fix`
    node_modules/@azure/core-http/node_modules/form-data
    node_modules/@types/node-fetch/node_modules/form-data
    node_modules/form-data
    1 critical severity vulnerability
    To address all issues, run:
      npm audit fix
This change is the result of from running `npm audit fix` and then
using[1] to update licenses via `licensed cache`.
It doesn't look like `dependabot` previously raised any PRs for this
dependency, so this bumps it from `4.0.0` to `4.0.4`, see the
changelog[2] for details.
Link: https://github.com/licensee/licensed  [1]
Link: https://github.com/form-data/form-data/blob/v4.0.4/CHANGELOG.md  [2] 
							
						 
						
							2025-08-13 12:02:46 -05:00  
				
					
						
							
							
								 
						
							
								8e57b58e57 
								
							 
						 
						
							
							
								
								Bump eslint-plugin-jest from 28.11.0 to 29.0.1 ( #603 )  
							
							... 
							
							
							
							Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 28.11.0 to 29.0.1.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v28.11.0...v29.0.1 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
  dependency-version: 29.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2025-07-16 16:31:11 -05:00  
				
					
						
							
							
								 
						
							
								7c0b336c9a 
								
							 
						 
						
							
							
								
								Bump typescript from 5.4.2 to 5.8.3 ( #538 )  
							
							... 
							
							
							
							* Bump typescript from 5.4.2 to 5.7.3
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.4.2 to 5.7.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.4.2...v5.7.3 )
---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* Fix low security alert
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: HarithaVattikuti <73516759+HarithaVattikuti@users.noreply.github.com> 
							
						 
						
							2025-07-10 19:26:25 -05:00  
				
					
						
							
							
								 
						
							
								6f26dcc668 
								
							 
						 
						
							
							
								
								Bump undici from 5.28.5 to 5.29.0 ( #594 )  
							
							... 
							
							
							
							* Bump undici from 5.28.5 to 5.29.0
Bumps [undici](https://github.com/nodejs/undici ) from 5.28.5 to 5.29.0.
- [Release notes](https://github.com/nodejs/undici/releases )
- [Commits](https://github.com/nodejs/undici/compare/v5.28.5...v5.29.0 )
---
updated-dependencies:
- dependency-name: undici
  dependency-version: 5.29.0
  dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
* Fix CI failures
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: HarithaVattikuti <73516759+HarithaVattikuti@users.noreply.github.com> 
							
						 
						
							2025-07-08 10:07:25 -05:00  
				
					
						
							
							
								 
						
							
								8d4083a006 
								
							 
						 
						
							
							
								
								Bump @typescript-eslint/parser from 5.62.0 to 8.32.0 ( #590 )  
							
							... 
							
							
							
							Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) from 5.62.0 to 8.32.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.32.0/packages/parser )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.32.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2025-07-07 13:56:18 -05:00  
				
					
						
							
							
								 
						
							
								fa96338abe 
								
							 
						 
						
							
							
								
								Bump @actions/tool-cache from 2.0.1 to 2.0.2 ( #591 )  
							
							... 
							
							
							
							* Bump @actions/tool-cache from 2.0.1 to 2.0.2
Bumps [@actions/tool-cache](https://github.com/actions/toolkit/tree/HEAD/packages/tool-cache ) from 2.0.1 to 2.0.2.
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/tool-cache/RELEASES.md )
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/tool-cache )
---
updated-dependencies:
- dependency-name: "@actions/tool-cache"
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
* Fix failures
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: HarithaVattikuti <73516759+HarithaVattikuti@users.noreply.github.com> 
							
						 
						
							2025-06-18 17:01:53 -05:00  
				
					
						
							
							
								 
						
							
								461004e4c9 
								
							 
						 
						
							
							
								
								fix: add check for D: drive existence in Windows cache directory setup  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <18515134+antontroshin@users.noreply.github.com> 
							
						 
						
							2025-06-12 02:24:23 -05:00  
				
					
						
							
							
								 
						
							
								6ccafa914b 
								
							 
						 
						
							
							
								
								Merge branch 'main' of github.com:antontroshin/setup-go into windows-go-mod-cache  
							
							
							
						 
						
							2025-06-12 02:13:10 -05:00  
				
					
						
							
							
								 
						
							
								4de67c04ab 
								
							 
						 
						
							
							
								
								Bump @types/jest from 29.5.12 to 29.5.14 ( #589 )  
							
							... 
							
							
							
							Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest ) from 29.5.12 to 29.5.14.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest )
---
updated-dependencies:
- dependency-name: "@types/jest"
  dependency-version: 29.5.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2025-06-11 11:22:57 -05:00  
				
					
						
							
							
								 
						
							
								d35c59abb0 
								
							 
						 
						
							
							
								
								chore: update discussions url ( #527 )  
							
							
							
						 
						
							2025-05-07 12:33:58 -05:00  
				
					
						
							
							
								 
						
							
								29694d72cd 
								
							 
						 
						
							
							
								
								Add manifest validation and improve error handling ( #586 )  
							
							
							
						 
						
							2025-05-05 22:00:04 -05:00  
				
					
						
							
							
								 
						
							
								78535dd5f2 
								
							 
						 
						
							
							
								
								Bump eslint-plugin-jest from 27.9.0 to 28.11.0 ( #537 )  
							
							... 
							
							
							
							* Bump eslint-plugin-jest from 27.9.0 to 28.11.0
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.9.0 to 28.11.0.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.9.0...v28.11.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* check failures fix
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com> 
							
						 
						
							2025-05-05 13:34:43 -05:00  
				
					
						
							
							
								 
						
							
								bb65d8857b 
								
							 
						 
						
							
							
								
								Bump ts-jest from 29.1.2 to 29.3.2 ( #582 )  
							
							... 
							
							
							
							* Bump ts-jest from 29.1.2 to 29.3.2
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest ) from 29.1.2 to 29.3.2.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases )
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v29.1.2...v29.3.2 )
---
updated-dependencies:
- dependency-name: ts-jest
  dependency-version: 29.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* fix check failures
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com> 
							
						 
						
							2025-04-30 10:37:00 -05:00  
				
					
						
							
							
								 
						
							
								7f17e836c0 
								
							 
						 
						
							
							
								
								Bump @actions/glob from 0.4.0 to 0.5.0 ( #573 )  
							
							... 
							
							
							
							* Bump @actions/glob from 0.4.0 to 0.5.0
Bumps [@actions/glob](https://github.com/actions/toolkit/tree/HEAD/packages/glob ) from 0.4.0 to 0.5.0.
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/glob/RELEASES.md )
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/glob )
---
updated-dependencies:
- dependency-name: "@actions/glob"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* fix for check failures
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com> 
							
						 
						
							2025-04-29 12:31:28 -05:00  
				
					
						
							
							
								 
						
							
								dca8468d37 
								
							 
						 
						
							
							
								
								Update self-hosted environment validation and bump undici version ( #556 )  
							
							... 
							
							
							
							* Fix self-hosted environment check
* Update isSelfHosted logic 
							
						 
						
							2025-04-01 10:32:30 -05:00  
				
					
						
							
							
								 
						
							
								691cc3533f 
								
							 
						 
						
							
							
								
								upgrade actions/cache to 4.0.3 ( #574 )  
							
							
							
						 
						
							2025-04-01 10:24:42 -05:00  
				
					
						
							
							
								 
						
							
								0aaccfd150 
								
							 
						 
						
							
							
								
								Bump undici from 5.28.4 to 5.28.5 ( #541 )  
							
							... 
							
							
							
							* Bump undici from 5.28.4 to 5.28.5
Bumps [undici](https://github.com/nodejs/undici ) from 5.28.4 to 5.28.5.
- [Release notes](https://github.com/nodejs/undici/releases )
- [Commits](https://github.com/nodejs/undici/compare/v5.28.4...v5.28.5 )
---
updated-dependencies:
- dependency-name: undici
  dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
* Bump undici from 5.28.4 to 5.28.5
Bumps [undici](https://github.com/nodejs/undici ) from 5.28.4 to 5.28.5.
- [Release notes](https://github.com/nodejs/undici/releases )
- [Commits](https://github.com/nodejs/undici/compare/v5.28.4...v5.28.5 )
---
updated-dependencies:
- dependency-name: undici
  dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
* Fix failures
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: HarithaVattikuti <73516759+HarithaVattikuti@users.noreply.github.com> 
							
						 
						
							2025-03-18 10:29:43 -05:00  
				
					
						
							
							
								 
						
							
								c4c1141886 
								
							 
						 
						
							
							
								
								upgrade actions/cache to 4.0.2 ( #568 )  
							
							
							
						 
						
							2025-03-11 10:19:54 -05:00  
				
					
						
							
							
								 
						
							
								fdd38598b9 
								
							 
						 
						
							
							
								
								add GOTMPDIR override for Windows workflow  
							
							... 
							
							
							
							add validation for GOCACHE, GOMODCACHE, and GOTMPDIR on Windows
Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2025-03-07 13:35:32 -06:00  
				
					
						
							
							
								 
						
							
								5a083d0e9a 
								
							 
						 
						
							
							
								
								Bump eslint-config-prettier from 8.10.0 to 10.0.1 ( #536 )  
							
							... 
							
							
							
							Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier ) from 8.10.0 to 10.0.1.
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases )
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/eslint-config-prettier/compare/v8.10.0...v10.0.1 )
---
updated-dependencies:
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2025-01-21 15:47:58 -06:00  
				
					
						
							
							
								 
						
							
								1d82324e53 
								
							 
						 
						
							
							
								
								Bump semver from 7.6.0 to 7.6.3 ( #535 )  
							
							... 
							
							
							
							* Bump semver from 7.6.0 to 7.6.3
Bumps [semver](https://github.com/npm/node-semver ) from 7.6.0 to 7.6.3.
- [Release notes](https://github.com/npm/node-semver/releases )
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md )
- [Commits](https://github.com/npm/node-semver/compare/v7.6.0...v7.6.3 )
---
updated-dependencies:
- dependency-name: semver
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
* fix for check-dist and license failures
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com> 
							
						 
						
							2025-01-21 15:45:59 -06:00  
				
					
						
							
							
								 
						
							
								f111f3307d 
								
							 
						 
						
							
							
								
								Bump actions/publish-immutable-action from 0.0.3 to 0.0.4 ( #534 )  
							
							... 
							
							
							
							Bumps [actions/publish-immutable-action](https://github.com/actions/publish-immutable-action ) from 0.0.3 to 0.0.4.
- [Release notes](https://github.com/actions/publish-immutable-action/releases )
- [Commits](https://github.com/actions/publish-immutable-action/compare/0.0.3...v0.0.4 )
---
updated-dependencies:
- dependency-name: actions/publish-immutable-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2025-01-20 21:09:38 -06:00  
				
					
						
							
							
								 
						
							
								3d10edb4c2 
								
							 
						 
						
							
							
								
								Add new permission section ( #533 )  
							
							
							
						 
						
							2025-01-16 08:47:07 -06:00  
				
					
						
							
							
								 
						
							
								43e13893cf 
								
							 
						 
						
							
							
								
								Configure Dependabot settings ( #530 )  
							
							... 
							
							
							
							* Create dependabot.yml
* Format file 
							
						 
						
							2025-01-15 14:16:55 -06:00  
				
					
						
							
							
								 
						
							
								f81f022188 
								
							 
						 
						
							
							
								
								Use the new cache service: upgrade `@actions/cache` to `^4.0.0` ( #531 )  
							
							... 
							
							
							
							* Use new cache service
* Add licensed output
* Review licenses & update types 
							
						 
						
							2025-01-15 14:06:31 -06:00  
				
					
						
							
							
								 
						
							
								3041bf56c9 
								
							 
						 
						
							
							
								
								feat: fallback to "raw" endpoint for manifest when rate limit is reached ( #496 )  
							
							... 
							
							
							
							* feat: fallback to "raw" endpoint for manifest when rate limit is reached
* add information about raw access to the README
* prettier
* update cross-spawn to 7.0.6 to fix vulnerability 
							
						 
						
							2024-11-25 12:37:21 -06:00  
				
					
						
							
							
								 
						
							
								bda02de888 
								
							 
						 
						
							
							
								
								remove previous attempt logic  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 21:28:54 -06:00  
				
					
						
							
							
								 
						
							
								be775566d4 
								
							 
						 
						
							
							
								
								try different approach by overriding go ENV GOCACHE and GOMODCACHE vars for Windows  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 21:15:12 -06:00  
				
					
						
							
							
								 
						
							
								5b1dffca1b 
								
							 
						 
						
							
							
								
								remove empty cache folders to be able to create symlinks  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 20:15:14 -06:00  
				
					
						
							
							
								 
						
							
								e91efc513b 
								
							 
						 
						
							
							
								
								fix  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 19:27:12 -06:00  
				
					
						
							
							
								 
						
							
								e3c077dd6d 
								
							 
						 
						
							
							
								
								more logs and logic change  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 16:51:26 -06:00  
				
					
						
							
							
								 
						
							
								f8cf508b5f 
								
							 
						 
						
							
							
								
								lint and build  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 16:21:45 -06:00  
				
					
						
							
							
								 
						
							
								c8eefa5dde 
								
							 
						 
						
							
							
								
								wrap with try, debugging errors  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 16:20:55 -06:00  
				
					
						
							
							
								 
						
							
								896e2cbf0f 
								
							 
						 
						
							
							
								
								add logs  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 13:05:53 -06:00  
				
					
						
							
							
								 
						
							
								fd3fcb34ee 
								
							 
						 
						
							
							
								
								move symlink check  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 12:28:31 -06:00  
				
					
						
							
							
								 
						
							
								6cd0eaadd6 
								
							 
						 
						
							
							
								
								lint and build  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 12:09:58 -06:00  
				
					
						
							
							
								 
						
							
								0dc6404f6a 
								
							 
						 
						
							
							
								
								add check for existing symlink  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 11:50:35 -06:00  
				
					
						
							
							
								 
						
							
								434fb17078 
								
							 
						 
						
							
							
								
								Fix path replace  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-19 10:50:13 -06:00  
				
					
						
							
							
								 
						
							
								97e00a50c1 
								
							 
						 
						
							
							
								
								build  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-18 19:26:53 -06:00  
				
					
						
							
							
								 
						
							
								0859a18f70 
								
							 
						 
						
							
							
								
								add logs  
							
							... 
							
							
							
							Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-18 19:24:46 -06:00  
				
					
						
							
							
								 
						
							
								28b19b8019 
								
							 
						 
						
							
							
								
								Add GOCACHE AND GOMODCACHE symlink on Windows  
							
							... 
							
							
							
							Use D drive for faster cache restore
Signed-off-by: Anton Troshin <anton@diagrid.io> 
							
						 
						
							2024-11-18 18:53:10 -06:00  
				
					
						
							
							
								 
						
							
								41dfa10bad 
								
							 
						 
						
							
							
								
								Enhance workflows and Upgrade micromatch Dependency ( #510 )  
							
							... 
							
							
							
							* Update workflows and bump dependencies
* Add test for Go 1.22 and 1.23
* Update Go versions in local-cache setup and include macos-latest with ARM64 architecture 
							
						 
						
							2024-10-23 22:39:31 -05:00  
				
					
						
							
							
								 
						
							
								941977282c 
								
							 
						 
						
							
							
								
								Revise `isGhes` logic ( #511 )  
							
							... 
							
							
							
							* Revise `isGhes` logic
* ran `npm run format`
* added unit test
* tweaked unit test
* ran `npm run format` 
							
						 
						
							2024-10-21 11:56:08 -05:00