Migrate to ESM and upgrade dependencies#763
Merged
HarithaVattikuti merged 8 commits intoJul 15, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR migrates the action’s TypeScript/Node codebase to ESM (NodeNext), updates runtime path handling and intra-repo imports for ESM compatibility, modernizes Jest/ESLint/Prettier configuration for ESM, and upgrades runtime/dev dependencies (notably the @actions/* toolkits).
Changes:
- Switch TypeScript compilation to ESM via
NodeNext, update relative imports to include.js, and replace__dirnameusage withimport.meta.urlpath resolution. - Update testing and linting for ESM: add
jest.config.ts, add flat-configeslint.config.mjs, and introducetsconfig.eslint.json. - Bump dependencies and refresh licensed dependency metadata.
Reviewed changes
Copilot reviewed 48 out of 59 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tsconfig.json | Switch TS output/module resolution to NodeNext/ES2022 and adjust excludes for ESM-era config layout. |
| tsconfig.eslint.json | Add dedicated TS config to support ESLint/type-aware linting across src/tests (and root TS). |
| src/system.ts | Update local type import to .js extension for ESM compatibility. |
| src/setup-go.ts | Update entrypoint import to .js extension for ESM compatibility. |
| src/main.ts | Update local imports to .js and replace __dirname matcher path logic with import.meta.url-based resolution. |
| src/installer.ts | Update local imports to .js, refactor Go version fetching to use new helper module, and add Error.cause for download errors. |
| src/go-version-fetch.ts | New helper module extracting Go “versions dist” fetch logic for cleaner ESM/module boundaries. |
| src/cache-utils.ts | Update local import to .js and reformat multi-import for ESM. |
| src/cache-save.ts | Update local imports to .js for ESM. |
| src/cache-restore.ts | Update local imports to .js for ESM. |
| package.json | Mark package as ESM (type: module), modernize tool scripts, and bump dependencies/devDependencies. |
| jest.config.ts | Add ESM-aware Jest config using ts-jest with ESM settings and moduleNameMapper for .js specifiers. |
| jest.config.js | Remove legacy CJS Jest config. |
| eslint.config.mjs | Add ESLint flat config (ESM) aligned with new toolchain. |
| dist/setup/package.json | Mark the bundled setup distribution folder as ESM (type: module). |
| dist/cache-save/package.json | Mark the bundled cache-save distribution folder as ESM (type: module). |
| .prettierrc.json | Add JSON-based Prettier config suitable for ESM repos. |
| .prettierrc.js | Remove legacy CJS Prettier config. |
| .licensed.yml | Allow additional licenses introduced by dependency upgrades and update reviewed list. |
| .eslintrc.js | Remove legacy ESLint RC config (superseded by flat config). |
| .eslintignore | Remove legacy ESLint ignore file (superseded by flat config ignores). |
| tests/windows-toolcache.test.ts | Convert Jest tests to ESM-friendly mocking (unstable_mockModule) and explicit jest globals import. |
| tests/utils.test.ts | Update src import to .js and adopt explicit jest globals import. |
| tests/setup-go.test.ts | Convert mocks/imports to ESM approach, update JSON imports to import attributes, and adjust spies to mock-based types. |
| tests/cache-utils.test.ts | Convert to ESM-friendly mocking and adjust spies to mock-based types. |
| tests/cache-save.test.ts | Convert to ESM-friendly mocking (including fs), and update imports to .js. |
| tests/cache-restore.test.ts | Convert to ESM-friendly mocking and update imports to .js. |
| .licenses/npm/strnum.dep.yml | Update licensed metadata version for dependency changes. |
| .licenses/npm/semver.dep.yml | Add new licensed metadata for upgraded semver. |
| .licenses/npm/semver-6.3.1.dep.yml | Remove old semver licensed metadata entry. |
| .licenses/npm/path-expression-matcher.dep.yml | Update licensed metadata version for dependency changes. |
| .licenses/npm/minimatch-3.1.5.dep.yml | Add licensed metadata for minimatch v3 line (transitive). |
| .licenses/npm/minimatch-10.2.5.dep.yml | Add licensed metadata for minimatch v10 line (transitive). |
| .licenses/npm/is-unsafe.dep.yml | Update licensed metadata content to match the correct package/version. |
| .licenses/npm/fast-xml-parser.dep.yml | Update licensed metadata version for dependency changes. |
| .licenses/npm/brace-expansion-5.0.6.dep.yml | Add licensed metadata for newer brace-expansion (transitive). |
| .licenses/npm/brace-expansion-1.1.15.dep.yml | Update licensed metadata version for dependency changes. |
| .licenses/npm/balanced-match-4.0.4.dep.yml | Add licensed metadata for newer balanced-match (transitive). |
| .licenses/npm/balanced-match-1.0.2.dep.yml | Add licensed metadata for balanced-match (transitive). |
| .licenses/npm/anynum.dep.yml | Update licensed metadata version for dependency changes. |
| .licenses/npm/@typespec/ts-http-runtime.dep.yml | Update licensed metadata version/homepage for dependency changes. |
| .licenses/npm/@azure/storage-common.dep.yml | Update licensed metadata version/homepage for dependency changes. |
| .licenses/npm/@azure/storage-blob.dep.yml | Update licensed metadata version/homepage for dependency changes. |
| .licenses/npm/@azure/core-xml.dep.yml | Update licensed metadata version for dependency changes. |
| .licenses/npm/@azure/core-rest-pipeline.dep.yml | Update licensed metadata version/homepage for dependency changes. |
| .licenses/npm/@azure/core-http-compat.dep.yml | Update licensed metadata version for dependency changes. |
| .licenses/npm/@azure/core-client.dep.yml | Update licensed metadata version for dependency changes. |
| .licenses/npm/@azure/abort-controller.dep.yml | Add licensed metadata for abort-controller (transitive). |
| .licenses/npm/@actions/tool-cache.dep.yml | Update licensed metadata version for toolkit upgrade. |
| .licenses/npm/@actions/io.dep.yml | Update licensed metadata version for toolkit upgrade. |
| .licenses/npm/@actions/http-client.dep.yml | Update licensed metadata version for toolkit upgrade. |
| .licenses/npm/@actions/glob-0.7.0.dep.yml | Add licensed metadata for newer @actions/glob (toolkit upgrade). |
| .licenses/npm/@actions/glob-0.6.1.dep.yml | Update licensed metadata version for toolkit upgrade path. |
| .licenses/npm/@actions/exec.dep.yml | Update licensed metadata version for toolkit upgrade. |
| .licenses/npm/@actions/core.dep.yml | Update licensed metadata version for toolkit upgrade. |
| .licenses/npm/@actions/cache.dep.yml | Update licensed metadata version for toolkit upgrade. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
priyagupta108
force-pushed
the
esm-and-dependency-upgrades
branch
from
July 7, 2026 03:50
e9c6083 to
9575d2a
Compare
v-jitenderpalsingh
previously approved these changes
Jul 9, 2026
Clarified migration details to ESM for action compatibility.
v-jitenderpalsingh
approved these changes
Jul 14, 2026
priya-kinthali
approved these changes
Jul 14, 2026
HarithaVattikuti
approved these changes
Jul 15, 2026
eleboucher
pushed a commit
to eleboucher/runner-k8s-plugin
that referenced
this pull request
Jul 16, 2026
…(#84) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6.5.0` → `v7.0.0` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) #### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) #### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDEuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEwMS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwidHlwZS9tYWpvciJdfQ==--> Reviewed-on: https://git.erwanleboucher.dev/eleboucher/runner-k8s-plugin/pulls/84
eleboucher
pushed a commit
to eleboucher/apoci
that referenced
this pull request
Jul 16, 2026
…(#141) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6.5.0` → `v7.0.0` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) #### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) #### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDEuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEwMS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwidHlwZS9tYWpvciJdfQ==--> Reviewed-on: https://git.erwanleboucher.dev/eleboucher/apoci/pulls/141
eleboucher
pushed a commit
to eleboucher/talos-mcp
that referenced
this pull request
Jul 16, 2026
…(#22) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6.5.0` → `v7.0.0` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) #### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) #### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDEuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEwMS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS9naXRodWItYWN0aW9uIiwidHlwZS9tYWpvciJdfQ==--> Reviewed-on: https://git.erwanleboucher.dev/eleboucher/talos-mcp/pulls/22
fossyy
added a commit
to fossyy/tunnel-please
that referenced
this pull request
Jul 19, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6` → `v7` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v7.0.0...v7.0.0) ##### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) ##### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> ### [`v7`](actions/setup-go@v6.5.0...v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTcuOSIsInVwZGF0ZWRJblZlciI6IjQzLjI1Ny45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.fossy.my.id/bagas/tunnel-please/pulls/160 Co-authored-by: Renovate-Clanker <[email protected]> Co-committed-by: Renovate-Clanker <[email protected]>
fossyy
added a commit
to fossyy/tunnel-please
that referenced
this pull request
Jul 19, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6` → `v7` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v7.0.0...v7.0.0) ##### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) ##### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> ### [`v7`](actions/setup-go@v6.5.0...v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTcuOSIsInVwZGF0ZWRJblZlciI6IjQzLjI1Ny45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.fossy.my.id/bagas/tunnel-please/pulls/161 Co-authored-by: Renovate-Clanker <[email protected]> Co-committed-by: Renovate-Clanker <[email protected]>
mergify Bot
added a commit
to ArcadeData/arcadedb
that referenced
this pull request
Jul 19, 2026
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 6.5.0 to 7.0.0. Release notes *Sourced from [actions/setup-go's releases](https://github.com/actions/setup-go/releases).* > v7.0.0 > ------ > > What's Changed > -------------- > > * Migrate to ESM and upgrade dependencies by [`@priyagupta108`](https://github.com/priyagupta108) in [actions/setup-go#763](https://redirect.github.com/actions/setup-go/pull/763) > * chore(deps): bump `@actions/cache` to 6.2.0 by [`@philip-gai`](https://github.com/philip-gai) in [actions/setup-go#771](https://redirect.github.com/actions/setup-go/pull/771) > > New Contributors > ---------------- > > * [`@philip-gai`](https://github.com/philip-gai) made their first contribution in [actions/setup-go#771](https://redirect.github.com/actions/setup-go/pull/771) > > **Full Changelog**: <actions/setup-go@v6...v7.0.0> Commits * [`b7ad1da`](actions/setup-go@b7ad1da) chore(deps): bump `@actions/cache` to 6.2.0 ([#771](https://redirect.github.com/actions/setup-go/issues/771)) * [`0778a10`](actions/setup-go@0778a10) Migrate to ESM and upgrade dependencies ([#763](https://redirect.github.com/actions/setup-go/issues/763)) * See full diff in [compare view](actions/setup-go@924ae3a...b7ad1da) [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
scornet256
added a commit
to scornet256/go-logger
that referenced
this pull request
Jul 20, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6` → `v7` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v7.0.0...v7.0.0) #### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) #### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> ### [`v7`](actions/setup-go@v6.5.0...v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNjMuNiIsInVwZGF0ZWRJblZlciI6IjQzLjI2My42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.simoncor.net/golang/logger/pulls/5
scornet256
added a commit
to scornet256/gogitlabber
that referenced
this pull request
Jul 20, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6` → `v7` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v7.0.0...v7.0.0) #### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) #### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> ### [`v7`](actions/setup-go@v6.5.0...v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNjMuNiIsInVwZGF0ZWRJblZlciI6IjQzLjI2My42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://git.simoncor.net/golang/gogitlabber/pulls/5
pat-s
pushed a commit
to crowci/terraform-provider-crowci
that referenced
this pull request
Jul 20, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6.5.0` → `v7.0.0` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) #### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) #### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 12:59 AM, only on Monday ( * 0 * * 1 ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zMS4wIiwidXBkYXRlZEluVmVyIjoiNDMuMzEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeSDwn5Om77iPIl19--> Co-authored-by: crowci-bot <[email protected]> Reviewed-on: https://codefloe.com/crowci/terraform-provider-crowci/pulls/9
GiteaBot
pushed a commit
to go-gitea/terraform-provider-gitea
that referenced
this pull request
Jul 23, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6` → `v7` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v7.0.0...v7.0.0) ##### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) ##### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> ### [`v7`](actions/setup-go@v6.5.0...v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) ### [`v6.5.0`](https://github.com/actions/setup-go/releases/tag/v6.5.0) [Compare Source](actions/setup-go@v6.4.0...v6.5.0) #### What's Changed ##### Dependency update - Upgrade actions dependencies by [@​priyagupta108](https://github.com/priyagupta108) with [@​Copilot](https://github.com/Copilot) in [#​744](actions/setup-go#744) - Upgrade [@​types/node](https://github.com/types/node) and typescript-eslint dependencies to resolve npm audit findings by [@​HarithaVattikuti](https://github.com/HarithaVattikuti) in [#​755](actions/setup-go#755) - Upgrade [@​actions/cache](https://github.com/actions/cache) to 5.1.0, log cache write denied by [@​jasongin](https://github.com/jasongin) in [#​758](actions/setup-go#758) - Upgrade version to 6.5.0 in package.json and package-lock.json by [@​HarithaVattikuti](https://github.com/HarithaVattikuti) in [#​762](actions/setup-go#762) #### New Contributors - [@​priyagupta108](https://github.com/priyagupta108) with [@​Copilot](https://github.com/Copilot) made their first contribution in [#​744](actions/setup-go#744) - [@​jasongin](https://github.com/jasongin) made their first contribution in [#​758](actions/setup-go#758) **Full Changelog**: <actions/setup-go@v6...v6.5.0> ### [`v6.4.0`](https://github.com/actions/setup-go/releases/tag/v6.4.0) [Compare Source](actions/setup-go@v6.3.0...v6.4.0) ##### What's Changed ##### Enhancement - Add go-download-base-url input for custom Go distributions by [@​gdams](https://github.com/gdams) in [#​721](actions/setup-go#721) ##### Dependency update - Upgrade minimatch from 3.1.2 to 3.1.5 by [@​dependabot](https://github.com/dependabot) in [#​727](actions/setup-go#727) ##### Documentation update - Rearrange README.md, add advanced-usage.md by [@​priyagupta108](https://github.com/priyagupta108) in [#​724](actions/setup-go#724) - Fix Microsoft build of Go link by [@​gdams](https://github.com/gdams) in [#​734](actions/setup-go#734) ##### New Contributors - [@​gdams](https://github.com/gdams) made their first contribution in [#​721](actions/setup-go#721) **Full Changelog**: <actions/setup-go@v6...v6.4.0> ### [`v6.3.0`](https://github.com/actions/setup-go/releases/tag/v6.3.0) [Compare Source](actions/setup-go@v6.2.0...v6.3.0) ##### What's Changed - Update default Go module caching to use go.mod by [@​priyagupta108](https://github.com/priyagupta108) in [#​705](actions/setup-go#705) - Fix golang download url to go.dev by [@​178inaba](https://github.com/178inaba) in [#​469](actions/setup-go#469) **Full Changelog**: <actions/setup-go@v6...v6.3.0> ### [`v6.2.0`](https://github.com/actions/setup-go/releases/tag/v6.2.0) [Compare Source](actions/setup-go@v6.1.0...v6.2.0) ##### What's Changed ##### Enhancements - Example for restore-only cache in documentation by [@​aparnajyothi-y](https://github.com/aparnajyothi-y) in [#​696](actions/setup-go#696) - Update Node.js version in action.yml by [@​ccoVeille](https://github.com/ccoVeille) in [#​691](actions/setup-go#691) - Documentation update of actions/checkout by [@​deining](https://github.com/deining) in [#​683](actions/setup-go#683) ##### Dependency updates - Upgrade js-yaml from 3.14.1 to 3.14.2 by [@​dependabot](https://github.com/dependabot) in [#​682](actions/setup-go#682) - Upgrade [@​actions/cache](https://github.com/actions/cache) to v5 by [@​salmanmkc](https://github.com/salmanmkc) in [#​695](actions/setup-go#695) - Upgrade actions/checkout from 5 to 6 by [@​dependabot](https://github.com/dependabot) in [#​686](actions/setup-go#686) - Upgrade qs from 6.14.0 to 6.14.1 by [@​dependabot](https://github.com/dependabot) in [#​703](actions/setup-go#703) ##### New Contributors - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [#​691](actions/setup-go#691) - [@​deining](https://github.com/deining) made their first contribution in [#​683](actions/setup-go#683) **Full Changelog**: <actions/setup-go@v6...v6.2.0> ### [`v6.1.0`](https://github.com/actions/setup-go/releases/tag/v6.1.0) [Compare Source](actions/setup-go@v6...v6.1.0) ##### What's Changed ##### Enhancements - Fall back to downloading from go.dev/dl instead of storage.googleapis.com/golang by [@​nicholasngai](https://github.com/nicholasngai) in [#​665](actions/setup-go#665) - Add support for .tool-versions file and update workflow by [@​priya-kinthali](https://github.com/priya-kinthali) in [#​673](actions/setup-go#673) - Add comprehensive breaking changes documentation for v6 by [@​mahabaleshwars](https://github.com/mahabaleshwars) in [#​674](actions/setup-go#674) ##### Dependency updates - Upgrade eslint-config-prettier from 10.0.1 to 10.1.8 and document breaking changes in v6 by [@​dependabot](https://github.com/dependabot) in [#​617](actions/setup-go#617) - Upgrade actions/publish-action from 0.3.0 to 0.4.0 by [@​dependabot](https://github.com/dependabot) in [#​641](actions/setup-go#641) - Upgrade semver and [@​types/semver](https://github.com/types/semver) by [@​dependabot](https://github.com/dependabot) in [#​652](actions/setup-go#652) ##### New Contributors - [@​nicholasngai](https://github.com/nicholasngai) made their first contribution in [#​665](actions/setup-go#665) - [@​priya-kinthali](https://github.com/priya-kinthali) made their first contribution in [#​673](actions/setup-go#673) - [@​mahabaleshwars](https://github.com/mahabaleshwars) made their first contribution in [#​674](actions/setup-go#674) **Full Changelog**: <actions/setup-go@v6...v6.1.0> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/181 Reviewed-by: Lunny Xiao <[email protected]> Co-authored-by: Renovate Bot <[email protected]>
chhe
pushed a commit
to chhe/act_runner
that referenced
this pull request
Jul 23, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v6` → `v7` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v7.0.0`](https://github.com/actions/setup-go/releases/tag/v7.0.0) [Compare Source](actions/setup-go@v7.0.0...v7.0.0) ##### What's Changed - Migrate to ESM and upgrade dependencies by [@​priyagupta108](https://github.com/priyagupta108) in [#​763](actions/setup-go#763) - chore(deps): bump [@​actions/cache](https://github.com/actions/cache) to 6.2.0 by [@​philip-gai](https://github.com/philip-gai) in [#​771](actions/setup-go#771) ##### New Contributors - [@​philip-gai](https://github.com/philip-gai) made their first contribution in [#​771](actions/setup-go#771) **Full Changelog**: <actions/setup-go@v6...v7.0.0> ### [`v7`](actions/setup-go@v6.5.0...v7.0.0) [Compare Source](actions/setup-go@v6.5.0...v7.0.0) ### [`v6.5.0`](https://github.com/actions/setup-go/releases/tag/v6.5.0) [Compare Source](actions/setup-go@v6.4.0...v6.5.0) ##### What's Changed ##### Dependency update - Upgrade actions dependencies by [@​priyagupta108](https://github.com/priyagupta108) with [@​Copilot](https://github.com/Copilot) in [#​744](actions/setup-go#744) - Upgrade [@​types/node](https://github.com/types/node) and typescript-eslint dependencies to resolve npm audit findings by [@​HarithaVattikuti](https://github.com/HarithaVattikuti) in [#​755](actions/setup-go#755) - Upgrade [@​actions/cache](https://github.com/actions/cache) to 5.1.0, log cache write denied by [@​jasongin](https://github.com/jasongin) in [#​758](actions/setup-go#758) - Upgrade version to 6.5.0 in package.json and package-lock.json by [@​HarithaVattikuti](https://github.com/HarithaVattikuti) in [#​762](actions/setup-go#762) ##### New Contributors - [@​priyagupta108](https://github.com/priyagupta108) with [@​Copilot](https://github.com/Copilot) made their first contribution in [#​744](actions/setup-go#744) - [@​jasongin](https://github.com/jasongin) made their first contribution in [#​758](actions/setup-go#758) **Full Changelog**: <actions/setup-go@v6...v6.5.0> ### [`v6.4.0`](https://github.com/actions/setup-go/releases/tag/v6.4.0) [Compare Source](actions/setup-go@v6.3.0...v6.4.0) ##### What's Changed ##### Enhancement - Add go-download-base-url input for custom Go distributions by [@​gdams](https://github.com/gdams) in [#​721](actions/setup-go#721) ##### Dependency update - Upgrade minimatch from 3.1.2 to 3.1.5 by [@​dependabot](https://github.com/dependabot) in [#​727](actions/setup-go#727) ##### Documentation update - Rearrange README.md, add advanced-usage.md by [@​priyagupta108](https://github.com/priyagupta108) in [#​724](actions/setup-go#724) - Fix Microsoft build of Go link by [@​gdams](https://github.com/gdams) in [#​734](actions/setup-go#734) ##### New Contributors - [@​gdams](https://github.com/gdams) made their first contribution in [#​721](actions/setup-go#721) **Full Changelog**: <actions/setup-go@v6...v6.4.0> ### [`v6.3.0`](https://github.com/actions/setup-go/releases/tag/v6.3.0) [Compare Source](actions/setup-go@v6.2.0...v6.3.0) ##### What's Changed - Update default Go module caching to use go.mod by [@​priyagupta108](https://github.com/priyagupta108) in [#​705](actions/setup-go#705) - Fix golang download url to go.dev by [@​178inaba](https://github.com/178inaba) in [#​469](actions/setup-go#469) **Full Changelog**: <actions/setup-go@v6...v6.3.0> ### [`v6.2.0`](https://github.com/actions/setup-go/releases/tag/v6.2.0) [Compare Source](actions/setup-go@v6.1.0...v6.2.0) ##### What's Changed ##### Enhancements - Example for restore-only cache in documentation by [@​aparnajyothi-y](https://github.com/aparnajyothi-y) in [#​696](actions/setup-go#696) - Update Node.js version in action.yml by [@​ccoVeille](https://github.com/ccoVeille) in [#​691](actions/setup-go#691) - Documentation update of actions/checkout by [@​deining](https://github.com/deining) in [#​683](actions/setup-go#683) ##### Dependency updates - Upgrade js-yaml from 3.14.1 to 3.14.2 by [@​dependabot](https://github.com/dependabot) in [#​682](actions/setup-go#682) - Upgrade [@​actions/cache](https://github.com/actions/cache) to v5 by [@​salmanmkc](https://github.com/salmanmkc) in [#​695](actions/setup-go#695) - Upgrade actions/checkout from 5 to 6 by [@​dependabot](https://github.com/dependabot) in [#​686](actions/setup-go#686) - Upgrade qs from 6.14.0 to 6.14.1 by [@​dependabot](https://github.com/dependabot) in [#​703](actions/setup-go#703) ##### New Contributors - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [#​691](actions/setup-go#691) - [@​deining](https://github.com/deining) made their first contribution in [#​683](actions/setup-go#683) **Full Changelog**: <actions/setup-go@v6...v6.2.0> ### [`v6.1.0`](https://github.com/actions/setup-go/releases/tag/v6.1.0) [Compare Source](actions/setup-go@v6...v6.1.0) ##### What's Changed ##### Enhancements - Fall back to downloading from go.dev/dl instead of storage.googleapis.com/golang by [@​nicholasngai](https://github.com/nicholasngai) in [#​665](actions/setup-go#665) - Add support for .tool-versions file and update workflow by [@​priya-kinthali](https://github.com/priya-kinthali) in [#​673](actions/setup-go#673) - Add comprehensive breaking changes documentation for v6 by [@​mahabaleshwars](https://github.com/mahabaleshwars) in [#​674](actions/setup-go#674) ##### Dependency updates - Upgrade eslint-config-prettier from 10.0.1 to 10.1.8 and document breaking changes in v6 by [@​dependabot](https://github.com/dependabot) in [#​617](actions/setup-go#617) - Upgrade actions/publish-action from 0.3.0 to 0.4.0 by [@​dependabot](https://github.com/dependabot) in [#​641](actions/setup-go#641) - Upgrade semver and [@​types/semver](https://github.com/types/semver) by [@​dependabot](https://github.com/dependabot) in [#​652](actions/setup-go#652) ##### New Contributors - [@​nicholasngai](https://github.com/nicholasngai) made their first contribution in [#​665](actions/setup-go#665) - [@​priya-kinthali](https://github.com/priya-kinthali) made their first contribution in [#​673](actions/setup-go#673) - [@​mahabaleshwars](https://github.com/mahabaleshwars) made their first contribution in [#​674](actions/setup-go#674) **Full Changelog**: <actions/setup-go@v6...v6.1.0> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://gitea.com/gitea/runner/pulls/1102 Reviewed-by: Lunny Xiao <[email protected]> Co-authored-by: Renovate Bot <[email protected]>
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
Convert to ESM, update imports/tests/configs for ESM, and bump dependencies.
Related issue:
Add link to the related issue.
Check list: