Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Oct 7, 2025

Problem

The parseInputFiles function was using a naive split(',') to parse comma-delimited file patterns, which broke valid glob patterns containing commas inside brace groups.

For example, a common glob pattern like:

files: |
  ./**/*.{exe,deb,tar.gz}

Would incorrectly be split into three separate invalid patterns:

['./**/*.{exe', 'deb', 'tar.gz}']

This caused the glob matching to fail since the patterns were malformed.

Solution

Implemented a smartSplit() helper function that:

  • Tracks brace depth while iterating through each character
  • Only splits on commas when outside of braces (braceDepth === 0)
  • Preserves commas inside brace groups as part of the pattern
  • Trims whitespace from each result

Updated parseInputFiles() to:

  • Split lines by newlines (unchanged behavior)
  • Use smartSplit() instead of naive String.split(',')
  • Use flatMap() for cleaner code structure

Examples

Now Works Correctly

parseInputFiles('./**/*.{exe,deb,tar.gz}')
// → ['./**/*.{exe,deb,tar.gz}']  ✅

parseInputFiles('./**/*.{exe,deb,tar.gz}\nfoo,bar')
// → ['./**/*.{exe,deb,tar.gz}', 'foo', 'bar']  ✅

Backward Compatibility Maintained

parseInputFiles('foo,bar')
// → ['foo', 'bar']  ✅

parseInputFiles('foo\nbar\nbaz')
// → ['foo', 'bar', 'baz']  ✅

parseInputFiles('foo,bar\nbaz,boom')
// → ['foo', 'bar', 'baz', 'boom']  ✅

Testing

Added comprehensive test coverage including:

  • Glob patterns with brace groups containing commas
  • Multiple brace groups on the same line
  • Nested braces (e.g., path/{a,{b,c}}/file.txt)
  • Mixed newlines and commas with braces
  • Empty comma-separated values
  • Whitespace handling

All 44 tests pass (7 new tests added), including all existing tests to ensure backward compatibility.

Fixes #659

Original prompt

This section details on the original issue you should resolve

<issue_title>files not support glob match files: '.**/*.{exe,deb,tar.gz}'</issue_title>
<issue_description>I find , will split ,but glob allow '.**/*.{exe,deb,tar.gz}' match

.concat(line.split(','))
</issue_description>

<agent_instructions>Fix the bug described in issue #659 – “files not support glob match files: './*.{exe,deb,tar.gz}'”**.

Problem

Currently, parseInputFiles in src/util.ts splits on commas (line.split(',')), which breaks valid glob patterns containing commas inside {} groups like:

files: |
./**/*.{exe,deb,tar.gz}

This causes the string to be split into invalid patterns ('.**/*.{exe', 'deb', 'tar.gz}').

Required Fix

Modify parseInputFiles so that it:

Still supports newline-delimited and comma-delimited lists for separate patterns.

Ignores commas inside {} groups when splitting (so .**/*.{exe,deb,tar.gz} remains one pattern).

Example expected behavior:

parseInputFiles('./*.{exe,deb,tar.gz}\nfoo,bar')
// → ['.
/*.{exe,deb,tar.gz}', 'foo', 'bar']

Implementation hint

A simple way:

Use a small parser that tracks brace depth while splitting on commas.

Only split when comma appears outside braces.

Example algorithm (you can refine it):

function smartSplit(input: string): string[] {
const result: string[] = [];
let current = '';
let braceDepth = 0;
for (const ch of input) {
if (ch === '{') braceDepth++;
if (ch === '}') braceDepth--;
if (ch === ',' && braceDepth === 0) {
result.push(current.trim());
current = '';
} else {
current += ch;
}
}
if (current.trim()) result.push(current.trim());
return result;
}

Then in parseInputFiles:

export const parseInputFiles = (files: string): string[] => {
return files
.split(/\r?\n/)
.flatMap((line) => smartSplit(line))
.filter((pat) => pat.trim() !== '');
};

Tests

Add unit tests in tests/util.test.ts:

it('handles globs with brace groups containing commas', () => {
assert.deepStrictEqual(
parseInputFiles('./*.{exe,deb,tar.gz}\nfoo,bar'),
['.
/*.{exe,deb,tar.gz}', 'foo', 'bar']
);
});

it('handles single-line brace pattern correctly', () => {
assert.deepStrictEqual(parseInputFiles('./*.{exe,deb,tar.gz}'), [
'.
/*.{exe,deb,tar.gz}',
]);
});

Validation

After implementation:

Run npm test to ensure new and existing tests pass.

Commit with:

fix(util): support brace expansion globs containing commas in parseInputFiles
test(util): add coverage for brace expansion glob parsing</agent_instructions>

Comments on the Issue (you are @copilot in this section)

Fixes #659

💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.

Copilot AI changed the title [WIP] files not support glob match files: '.**/*.{exe,deb,tar.gz}' fix(util): support brace expansion globs containing commas in parseInputFiles Oct 7, 2025
Copilot AI requested a review from chenrui333 October 7, 2025 03:25
@chenrui333 chenrui333 marked this pull request as ready for review October 7, 2025 03:49
@chenrui333 chenrui333 merged commit cec1a11 into master Oct 7, 2025
3 checks passed
@chenrui333 chenrui333 deleted the copilot/fix-476a4a90-d616-4c23-8615-6a8e7be7f73e branch October 7, 2025 03:50
@chenrui333 chenrui333 added the bug Something isn't working label Oct 11, 2025
mergify bot added a commit to robfrank/linklift that referenced this pull request Oct 15, 2025
Bumps the github-actions group with 2 updates: [softprops/action-gh-release](https://github.com/softprops/action-gh-release) and [ruby/setup-ruby](https://github.com/ruby/setup-ruby).
Updates `softprops/action-gh-release` from 2.3.4 to 2.4.1
Release notes

*Sourced from [softprops/action-gh-release's releases](https://github.com/softprops/action-gh-release/releases).*

> v2.4.1
> ------
>
> What's Changed
> --------------
>
> ### Other Changes 🔄
>
> * fix(util): support brace expansion globs containing commas in parseInputFiles by [`@​Copilot`](https://github.com/Copilot) in [softprops/action-gh-release#672](https://redirect.github.com/softprops/action-gh-release/pull/672)
> * fix: gracefully fallback to body when body\_path cannot be read by [`@​Copilot`](https://github.com/Copilot) in [softprops/action-gh-release#671](https://redirect.github.com/softprops/action-gh-release/pull/671)
>
> **Full Changelog**: <softprops/action-gh-release@v2...v2.4.1>
>
> v2.4.0
> ------
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat(action): respect working\_directory for files globs by [`@​stephenway`](https://github.com/stephenway) in [softprops/action-gh-release#667](https://redirect.github.com/softprops/action-gh-release/pull/667)
>
> ### Other Changes 🔄
>
> * chore(deps): bump the npm group with 2 updates by [`@​dependabot`](https://github.com/dependabot)[bot] in [softprops/action-gh-release#668](https://redirect.github.com/softprops/action-gh-release/pull/668)
>
> **Full Changelog**: <softprops/action-gh-release@v2.3.4...v2.4.0>


Changelog

*Sourced from [softprops/action-gh-release's changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md).*

> 2.4.1
> -----
>
> What's Changed
> --------------
>
> ### Other Changes 🔄
>
> * fix(util): support brace expansion globs containing commas in parseInputFiles by [`@​Copilot`](https://github.com/Copilot) in [softprops/action-gh-release#672](https://redirect.github.com/softprops/action-gh-release/pull/672)
> * fix: gracefully fallback to body when body\_path cannot be read by [`@​Copilot`](https://github.com/Copilot) in [softprops/action-gh-release#671](https://redirect.github.com/softprops/action-gh-release/pull/671)
>
> 2.4.0
> -----
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat(action): respect working\_directory for files globs by [`@​stephenway`](https://github.com/stephenway) in [softprops/action-gh-release#667](https://redirect.github.com/softprops/action-gh-release/pull/667)
>
> 2.3.4
> -----
>
> What's Changed
> --------------
>
> ### Bug fixes 🐛
>
> * fix(action): handle 422 already\_exists race condition by [`@​stephenway`](https://github.com/stephenway) in [softprops/action-gh-release#665](https://redirect.github.com/softprops/action-gh-release/pull/665)
>
> ### Other Changes 🔄
>
> * dependency updates
>
> 2.3.3
> -----
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat: add input option `overwrite_files` by [`@​asfernandes`](https://github.com/asfernandes) in [softprops/action-gh-release#343](https://redirect.github.com/softprops/action-gh-release/pull/343)
>
> ### Other Changes 🔄
>
> * dependency updates
>
> 2.3.2
> -----
>
> * fix: revert fs `readableWebStream` change
>
> 2.3.1
> -----
>
> ### Bug fixes 🐛
>
> * fix: fix file closing issue by [`@​WailGree`](https://github.com/WailGree) in [softprops/action-gh-release#629](https://redirect.github.com/softprops/action-gh-release/pull/629)

... (truncated)


Commits

* [`6da8fa9`](softprops/action-gh-release@6da8fa9) release 2.4.1
* [`f38efde`](softprops/action-gh-release@f38efde) fix: gracefully fallback to body when body\_path cannot be read ([#671](https://redirect.github.com/softprops/action-gh-release/issues/671))
* [`cec1a11`](softprops/action-gh-release@cec1a11) fix(util): support brace expansion globs containing commas in parseInputFiles...
* [`aec2ec5`](softprops/action-gh-release@aec2ec5) release 2.4.0
* [`4db716b`](softprops/action-gh-release@4db716b) feat: respect working\_directory for files globs; add input and tests ([#667](https://redirect.github.com/softprops/action-gh-release/issues/667))
* [`14820f2`](softprops/action-gh-release@14820f2) chore(deps): bump the npm group with 2 updates ([#668](https://redirect.github.com/softprops/action-gh-release/issues/668))
* See full diff in [compare view](softprops/action-gh-release@62c96d0...6da8fa9)
  
Updates `ruby/setup-ruby` from 1.263.0 to 1.265.0
Release notes

*Sourced from [ruby/setup-ruby's releases](https://github.com/ruby/setup-ruby/releases).*

> v1.265.0
> --------
>
> What's Changed
> --------------
>
> * Update CRuby releases on Windows by [`@​ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#817](https://redirect.github.com/ruby/setup-ruby/pull/817)
>
> **Full Changelog**: <ruby/setup-ruby@v1.264.0...v1.265.0>
>
> v1.264.0
> --------
>
> What's Changed
> --------------
>
> * Add ruby-3.4.7 by [`@​ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#815](https://redirect.github.com/ruby/setup-ruby/pull/815)
>
> **Full Changelog**: <ruby/setup-ruby@v1.263.0...v1.264.0>


Commits

* [`ab177d4`](ruby/setup-ruby@ab177d4) Update CRuby releases on Windows
* [`6797dcb`](ruby/setup-ruby@6797dcb) Add ruby-3.4.7
* [`a16e0e6`](ruby/setup-ruby@a16e0e6) Test on macos-15-intel too
* See full diff in [compare view](ruby/setup-ruby@0481980...ab177d4)
  
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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore  major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore  minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
mergify bot added a commit to robfrank/linklift that referenced this pull request Nov 10, 2025
Bumps the github-actions group with 3 updates: [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action), [softprops/action-gh-release](https://github.com/softprops/action-gh-release) and [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action).
Updates `docker/setup-qemu-action` from 3.6.0 to 3.7.0
Release notes

*Sourced from [docker/setup-qemu-action's releases](https://github.com/docker/setup-qemu-action/releases).*

> v3.7.0
> ------
>
> * Bump `@​docker/actions-toolkit` from 0.56.0 to 0.67.0 in [docker/setup-qemu-action#217](https://redirect.github.com/docker/setup-qemu-action/pull/217) [docker/setup-qemu-action#230](https://redirect.github.com/docker/setup-qemu-action/pull/230)
> * Bump brace-expansion from 1.1.11 to 1.1.12 in [docker/setup-qemu-action#220](https://redirect.github.com/docker/setup-qemu-action/pull/220)
> * Bump form-data from 2.5.1 to 2.5.5 in [docker/setup-qemu-action#218](https://redirect.github.com/docker/setup-qemu-action/pull/218)
> * Bump tmp from 0.2.3 to 0.2.4 in [docker/setup-qemu-action#221](https://redirect.github.com/docker/setup-qemu-action/pull/221)
> * Bump undici from 5.28.4 to 5.29.0 in [docker/setup-qemu-action#219](https://redirect.github.com/docker/setup-qemu-action/pull/219)
>
> **Full Changelog**: <docker/setup-qemu-action@v3.6.0...v3.7.0>


Commits

* [`c7c5346`](docker/setup-qemu-action@c7c5346) Merge pull request [#230](https://redirect.github.com/docker/setup-qemu-action/issues/230) from docker/dependabot/npm\_and\_yarn/docker/actions-to...
* [`3a517a1`](docker/setup-qemu-action@3a517a1) chore: update generated content
* [`a5b45ed`](docker/setup-qemu-action@a5b45ed) build(deps): bump `@​docker/actions-toolkit` from 0.62.1 to 0.67.0
* [`3a64278`](docker/setup-qemu-action@3a64278) Merge pull request [#220](https://redirect.github.com/docker/setup-qemu-action/issues/220) from docker/dependabot/npm\_and\_yarn/brace-expansion-1...
* [`94906ba`](docker/setup-qemu-action@94906ba) chore: update generated content
* [`4027abf`](docker/setup-qemu-action@4027abf) build(deps): bump brace-expansion from 1.1.11 to 1.1.12
* [`bee0aaa`](docker/setup-qemu-action@bee0aaa) Merge pull request [#221](https://redirect.github.com/docker/setup-qemu-action/issues/221) from docker/dependabot/npm\_and\_yarn/tmp-0.2.4
* [`0d7e257`](docker/setup-qemu-action@0d7e257) chore: update generated content
* [`b869601`](docker/setup-qemu-action@b869601) build(deps): bump tmp from 0.2.3 to 0.2.4
* [`3a043ed`](docker/setup-qemu-action@3a043ed) Merge pull request [#219](https://redirect.github.com/docker/setup-qemu-action/issues/219) from docker/dependabot/npm\_and\_yarn/undici-5.29.0
* Additional commits viewable in [compare view](docker/setup-qemu-action@2910929...c7c5346)
  
Updates `softprops/action-gh-release` from 2.4.1 to 2.4.2
Release notes

*Sourced from [softprops/action-gh-release's releases](https://github.com/softprops/action-gh-release/releases).*

> v2.4.2
> ------
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat: Ensure generated release notes cannot be over 125000 characters by [`@​BeryJu`](https://github.com/BeryJu) in [softprops/action-gh-release#684](https://redirect.github.com/softprops/action-gh-release/pull/684)
>
> ### Other Changes 🔄
>
> * dependency updates
>
> New Contributors
> ----------------
>
> * [`@​BeryJu`](https://github.com/BeryJu) made their first contribution in [softprops/action-gh-release#684](https://redirect.github.com/softprops/action-gh-release/pull/684)
>
> **Full Changelog**: <softprops/action-gh-release@v2.4.1...v2.4.2>


Changelog

*Sourced from [softprops/action-gh-release's changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md).*

> 2.4.2
> -----
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat: Ensure generated release notes cannot be over 125000 characters by [`@​BeryJu`](https://github.com/BeryJu) in [softprops/action-gh-release#684](https://redirect.github.com/softprops/action-gh-release/pull/684)
>
> ### Other Changes 🔄
>
> * dependency updates
>
> 2.4.1
> -----
>
> What's Changed
> --------------
>
> ### Other Changes 🔄
>
> * fix(util): support brace expansion globs containing commas in parseInputFiles by [`@​Copilot`](https://github.com/Copilot) in [softprops/action-gh-release#672](https://redirect.github.com/softprops/action-gh-release/pull/672)
> * fix: gracefully fallback to body when body\_path cannot be read by [`@​Copilot`](https://github.com/Copilot) in [softprops/action-gh-release#671](https://redirect.github.com/softprops/action-gh-release/pull/671)
>
> 2.4.0
> -----
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat(action): respect working\_directory for files globs by [`@​stephenway`](https://github.com/stephenway) in [softprops/action-gh-release#667](https://redirect.github.com/softprops/action-gh-release/pull/667)
>
> 2.3.4
> -----
>
> What's Changed
> --------------
>
> ### Bug fixes 🐛
>
> * fix(action): handle 422 already\_exists race condition by [`@​stephenway`](https://github.com/stephenway) in [softprops/action-gh-release#665](https://redirect.github.com/softprops/action-gh-release/pull/665)
>
> ### Other Changes 🔄
>
> * dependency updates
>
> 2.3.3
> -----
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat: add input option `overwrite_files` by [`@​asfernandes`](https://github.com/asfernandes) in [softprops/action-gh-release#343](https://redirect.github.com/softprops/action-gh-release/pull/343)
>
> ### Other Changes 🔄

... (truncated)


Commits

* [`5be0e66`](softprops/action-gh-release@5be0e66) release 2.4.2
* [`af658b4`](softprops/action-gh-release@af658b4) feat: Ensure generated release notes cannot be over 125000 characters ([#684](https://redirect.github.com/softprops/action-gh-release/issues/684))
* [`237aacc`](softprops/action-gh-release@237aacc) chore: bump node to 24.11.0
* [`00362be`](softprops/action-gh-release@00362be) chore(deps): bump the npm group with 5 updates ([#687](https://redirect.github.com/softprops/action-gh-release/issues/687))
* [`0adea5a`](softprops/action-gh-release@0adea5a) chore(deps): bump the npm group with 3 updates ([#686](https://redirect.github.com/softprops/action-gh-release/issues/686))
* [`aa05f9d`](softprops/action-gh-release@aa05f9d) chore(deps): bump actions/setup-node from 5.0.0 to 6.0.0 in the github-action...
* [`bbaccb3`](softprops/action-gh-release@bbaccb3) chore(deps): bump `@​types/node` from 20.19.21 to 20.19.22 in the npm group ([#682](https://redirect.github.com/softprops/action-gh-release/issues/682))
* [`50fda3f`](softprops/action-gh-release@50fda3f) chore(deps): bump vite from 7.1.5 to 7.1.11 ([#681](https://redirect.github.com/softprops/action-gh-release/issues/681))
* [`5434409`](softprops/action-gh-release@5434409) chore(deps): bump `@​types/node` from 20.19.19 to 20.19.21 in the npm group ([#679](https://redirect.github.com/softprops/action-gh-release/issues/679))
* See full diff in [compare view](softprops/action-gh-release@6da8fa9...5be0e66)
  
Updates `updatecli/updatecli-action` from 2.94.0 to 2.95.0
Release notes

*Sourced from [updatecli/updatecli-action's releases](https://github.com/updatecli/updatecli-action/releases).*

> v2.95.0 🌈
> ---------
>
> Changes
> -------
>
> * deps: update updatecli version to v0.110.2 @[updateclibot[bot]](https://github.com/apps/updateclibot) ([#977](https://redirect.github.com/updatecli/updatecli-action/issues/977))
> * deps: update updatecli version to v0.110.1 @[updateclibot[bot]](https://github.com/apps/updateclibot) ([#976](https://redirect.github.com/updatecli/updatecli-action/issues/976))
> * deps: update updatecli version to v0.110.0 @[updateclibot[bot]](https://github.com/apps/updateclibot) ([#975](https://redirect.github.com/updatecli/updatecli-action/issues/975))
> * Bump "`@​types/node`" package version @[updateclibot[bot]](https://github.com/apps/updateclibot) ([#973](https://redirect.github.com/updatecli/updatecli-action/issues/973))
>
> Contributors
> ------------
>
> [`@​olblak`](https://github.com/olblak), [`@​updateclibot`](https://github.com/updateclibot)[bot] and [updateclibot[bot]](https://github.com/apps/updateclibot)


Commits

* [`9c04c99`](updatecli/updatecli-action@9c04c99) deps: update updatecli version to v0.110.2 ([#977](https://redirect.github.com/updatecli/updatecli-action/issues/977))
* [`f1c1efe`](updatecli/updatecli-action@f1c1efe) deps: update updatecli version to v0.110.1 ([#976](https://redirect.github.com/updatecli/updatecli-action/issues/976))
* [`deccdf0`](updatecli/updatecli-action@deccdf0) Update updatecli.yaml to v0.110.1
* [`8075ad1`](updatecli/updatecli-action@8075ad1) deps: update updatecli version to v0.110.0 ([#975](https://redirect.github.com/updatecli/updatecli-action/issues/975))
* [`ff76bdc`](updatecli/updatecli-action@ff76bdc) Bump "`@​types/node`" package version ([#973](https://redirect.github.com/updatecli/updatecli-action/issues/973))
* See full diff in [compare view](updatecli/updatecli-action@719e359...9c04c99)
  
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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore  major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore  minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
mergify bot added a commit to robfrank/linklift that referenced this pull request Dec 14, 2025
Bumps the github-actions group with 9 updates:
| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `6.0.0` | `6.0.1` |
| [actions/setup-java](https://github.com/actions/setup-java) | `5.0.0` | `5.1.0` |
| [graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm) | `1.4.3` | `1.4.4` |
| [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.4.2` | `2.5.0` |
| [github/codeql-action](https://github.com/github/codeql-action) | `4.31.5` | `4.31.7` |
| [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7.0.9` | `7.0.11` |
| [ruby/setup-ruby](https://github.com/ruby/setup-ruby) | `1.268.0` | `1.269.0` |
| [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) | `2.96.0` | `2.97.0` |
| [actions/setup-node](https://github.com/actions/setup-node) | `6.0.0` | `6.1.0` |
Updates `actions/checkout` from 6.0.0 to 6.0.1
Release notes

*Sourced from [actions/checkout's releases](https://github.com/actions/checkout/releases).*

> v6.0.1
> ------
>
> What's Changed
> --------------
>
> * Update all references from v5 and v4 to v6 by [`@​ericsciple`](https://github.com/ericsciple) in [actions/checkout#2314](https://redirect.github.com/actions/checkout/pull/2314)
> * Add worktree support for persist-credentials includeIf by [`@​ericsciple`](https://github.com/ericsciple) in [actions/checkout#2327](https://redirect.github.com/actions/checkout/pull/2327)
> * Clarify v6 README by [`@​ericsciple`](https://github.com/ericsciple) in [actions/checkout#2328](https://redirect.github.com/actions/checkout/pull/2328)
>
> **Full Changelog**: <actions/checkout@v6...v6.0.1>


Commits

* [`8e8c483`](actions/checkout@8e8c483) Clarify v6 README ([#2328](https://redirect.github.com/actions/checkout/issues/2328))
* [`033fa0d`](actions/checkout@033fa0d) Add worktree support for persist-credentials includeIf ([#2327](https://redirect.github.com/actions/checkout/issues/2327))
* [`c2d88d3`](actions/checkout@c2d88d3) Update all references from v5 and v4 to v6 ([#2314](https://redirect.github.com/actions/checkout/issues/2314))
* See full diff in [compare view](actions/checkout@1af3b93...8e8c483)
  
Updates `actions/setup-java` from 5.0.0 to 5.1.0
Release notes

*Sourced from [actions/setup-java's releases](https://github.com/actions/setup-java/releases).*

> v5.1.0
> ------
>
> What's Changed
> --------------
>
> ### New Features
>
> * Add support for `.sdkmanrc` file in `java-version-file` parameter by [`@​guicamest`](https://github.com/guicamest) in [actions/setup-java#736](https://redirect.github.com/actions/setup-java/pull/736)
> * Add support for Microsoft OpenJDK 25 builds by [`@​the-mod`](https://github.com/the-mod) in [actions/setup-java#927](https://redirect.github.com/actions/setup-java/pull/927)
>
> ### Bug Fixes & Improvements
>
> * Update Regex to Support All ASDF Versions for the supported distributions in tool-versions File by [`@​aparnajyothi-y`](https://github.com/aparnajyothi-y) in [actions/setup-java#767](https://redirect.github.com/actions/setup-java/pull/767)
> * Enhance error logging for network failures to include endpoint/IP details, add retry mechanism and update workflows to use macos-15-intel by [`@​priya-kinthali`](https://github.com/priya-kinthali) in [actions/setup-java#946](https://redirect.github.com/actions/setup-java/pull/946)
> * Update SapMachine URLs by [`@​RealCLanger`](https://github.com/RealCLanger) in [actions/setup-java#955](https://redirect.github.com/actions/setup-java/pull/955)
> * Add GitHub Token Support for GraalVM and Refactor Code by [`@​mahabaleshwars`](https://github.com/mahabaleshwars) in [actions/setup-java#849](https://redirect.github.com/actions/setup-java/pull/849)
>
> ### Documentation changes
>
> * Update documentation to use checkout and Java v5 by [`@​lmvysakh`](https://github.com/lmvysakh) in [actions/setup-java#903](https://redirect.github.com/actions/setup-java/pull/903)
> * Clarify JAVA\_HOME and PATH setup in README by [`@​chiranjib-swain`](https://github.com/chiranjib-swain) in [actions/setup-java#841](https://redirect.github.com/actions/setup-java/pull/841)
>
> ### Dependency updates
>
> * Upgrade prettier from 2.8.8 to 3.6.2 and document breaking changes in v5 by [`@​dependabot`](https://github.com/dependabot) in [actions/setup-java#873](https://redirect.github.com/actions/setup-java/pull/873)
> * Upgrade actions/publish-action from 0.3.0 to 0.4.0 by [`@​dependabot`](https://github.com/dependabot) in [actions/setup-java#912](https://redirect.github.com/actions/setup-java/pull/912)
>
> New Contributors
> ----------------
>
> * [`@​lmvysakh`](https://github.com/lmvysakh) made their first contribution in [actions/setup-java#903](https://redirect.github.com/actions/setup-java/pull/903)
> * [`@​chiranjib-swain`](https://github.com/chiranjib-swain) made their first contribution in [actions/setup-java#841](https://redirect.github.com/actions/setup-java/pull/841)
> * [`@​the-mod`](https://github.com/the-mod) made their first contribution in [actions/setup-java#927](https://redirect.github.com/actions/setup-java/pull/927)
> * [`@​priya-kinthali`](https://github.com/priya-kinthali) made their first contribution in [actions/setup-java#946](https://redirect.github.com/actions/setup-java/pull/946)
> * [`@​guicamest`](https://github.com/guicamest) made their first contribution in [actions/setup-java#736](https://redirect.github.com/actions/setup-java/pull/736)
>
> **Full Changelog**: <actions/setup-java@v5...v5.1.0>


Commits

* [`f2beeb2`](actions/setup-java@f2beeb2) Bump actions/publish-action from 0.3.0 to 0.4.0 ([#912](https://redirect.github.com/actions/setup-java/issues/912))
* [`4e7e684`](actions/setup-java@4e7e684) feat: Add support for `.sdkmanrc` file in `java-version-file` parameter ([#736](https://redirect.github.com/actions/setup-java/issues/736))
* [`46c56d6`](actions/setup-java@46c56d6) Add GitHub Token Support for GraalVM and Refactor Code ([#849](https://redirect.github.com/actions/setup-java/issues/849))
* [`66b9457`](actions/setup-java@66b9457) Update SapMachine URLs ([#955](https://redirect.github.com/actions/setup-java/issues/955))
* [`6ba5449`](actions/setup-java@6ba5449) Enhance error logging for network failures to include endpoint/IP details, ad...
* [`de5a937`](actions/setup-java@de5a937) adds microsoft openjdk25 builds ([#927](https://redirect.github.com/actions/setup-java/issues/927))
* [`ead9eaa`](actions/setup-java@ead9eaa) Update Regex to Support All ASDF Versions for the supported distributions in ...
* [`8c57fa3`](actions/setup-java@8c57fa3) Clarify JAVA\_HOME and PATH setup in README ([#841](https://redirect.github.com/actions/setup-java/issues/841))
* [`a7ab372`](actions/setup-java@a7ab372) Bump prettier from 2.8.8 to 3.6.2 ([#873](https://redirect.github.com/actions/setup-java/issues/873))
* [`d0351b4`](actions/setup-java@d0351b4) Update documentation to use checkout and Java v5 ([#903](https://redirect.github.com/actions/setup-java/issues/903))
* See full diff in [compare view](actions/setup-java@dded088...f2beeb2)
  
Updates `graalvm/setup-graalvm` from 1.4.3 to 1.4.4
Release notes

*Sourced from [graalvm/setup-graalvm's releases](https://github.com/graalvm/setup-graalvm/releases).*

> v1.4.4
> ------
>
> What's Changed
> --------------
>
> * Bump actions/checkout from 5.0.0 to 6.0.0 in the github-actions-updates group by [`@​dependabot`](https://github.com/dependabot)[bot] in [graalvm/setup-graalvm#198](https://redirect.github.com/graalvm/setup-graalvm/pull/198)
> * Bump the npm-updates group with 10 updates by [`@​dependabot`](https://github.com/dependabot)[bot] in [graalvm/setup-graalvm#197](https://redirect.github.com/graalvm/setup-graalvm/pull/197)
>
> **Full Changelog**: <graalvm/setup-graalvm@v1.4.3...v1.4.4>


Commits

* [`790e289`](graalvm/setup-graalvm@790e289) Bump version to `1.4.4`.
* [`434a92b`](graalvm/setup-graalvm@434a92b) Update dist files.
* [`fe4a6b3`](graalvm/setup-graalvm@fe4a6b3) Update dependencies
* [`d8578a7`](graalvm/setup-graalvm@d8578a7) Bump the npm-updates group with 10 updates
* [`98e485c`](graalvm/setup-graalvm@98e485c) Bump actions/checkout in the github-actions-updates group
* See full diff in [compare view](graalvm/setup-graalvm@dec5790...790e289)
  
Updates `softprops/action-gh-release` from 2.4.2 to 2.5.0
Release notes

*Sourced from [softprops/action-gh-release's releases](https://github.com/softprops/action-gh-release/releases).*

> v2.5.0
> ------
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat: mark release as draft until all artifacts are uploaded by [`@​dumbmoron`](https://github.com/dumbmoron) in [softprops/action-gh-release#692](https://redirect.github.com/softprops/action-gh-release/pull/692)
>
> ### Other Changes 🔄
>
> * chore(deps): bump the npm group across 1 directory with 5 updates by [`@​dependabot`](https://github.com/dependabot)[bot] in [softprops/action-gh-release#697](https://redirect.github.com/softprops/action-gh-release/pull/697)
> * chore(deps): bump actions/checkout from 5.0.0 to 5.0.1 in the github-actions group by [`@​dependabot`](https://github.com/dependabot)[bot] in [softprops/action-gh-release#689](https://redirect.github.com/softprops/action-gh-release/pull/689)
>
> New Contributors
> ----------------
>
> * [`@​dumbmoron`](https://github.com/dumbmoron) made their first contribution in [softprops/action-gh-release#692](https://redirect.github.com/softprops/action-gh-release/pull/692)
>
> **Full Changelog**: <softprops/action-gh-release@v2.4.2...v2.5.0>


Changelog

*Sourced from [softprops/action-gh-release's changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md).*

> 2.5.0
> -----
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat: mark release as draft until all artifacts are uploaded by [`@​dumbmoron`](https://github.com/dumbmoron) in [softprops/action-gh-release#692](https://redirect.github.com/softprops/action-gh-release/pull/692)
>
> ### Other Changes 🔄
>
> * dependency updates
>
> 2.4.2
> -----
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat: Ensure generated release notes cannot be over 125000 characters by [`@​BeryJu`](https://github.com/BeryJu) in [softprops/action-gh-release#684](https://redirect.github.com/softprops/action-gh-release/pull/684)
>
> ### Other Changes 🔄
>
> * dependency updates
>
> 2.4.1
> -----
>
> What's Changed
> --------------
>
> ### Other Changes 🔄
>
> * fix(util): support brace expansion globs containing commas in parseInputFiles by [`@​Copilot`](https://github.com/Copilot) in [softprops/action-gh-release#672](https://redirect.github.com/softprops/action-gh-release/pull/672)
> * fix: gracefully fallback to body when body\_path cannot be read by [`@​Copilot`](https://github.com/Copilot) in [softprops/action-gh-release#671](https://redirect.github.com/softprops/action-gh-release/pull/671)
>
> 2.4.0
> -----
>
> What's Changed
> --------------
>
> ### Exciting New Features 🎉
>
> * feat(action): respect working\_directory for files globs by [`@​stephenway`](https://github.com/stephenway) in [softprops/action-gh-release#667](https://redirect.github.com/softprops/action-gh-release/pull/667)
>
> 2.3.4
> -----
>
> What's Changed
> --------------
>
> ### Bug fixes 🐛
>
> * fix(action): handle 422 already\_exists race condition by [`@​stephenway`](https://github.com/stephenway) in [softprops/action-gh-release#665](https://redirect.github.com/softprops/action-gh-release/pull/665)
>
> ### Other Changes 🔄

... (truncated)


Commits

* [`a06a81a`](softprops/action-gh-release@a06a81a) release 2.5.0
* [`7da8983`](softprops/action-gh-release@7da8983) feat: mark release as draft until all artifacts are uploaded ([#692](https://redirect.github.com/softprops/action-gh-release/issues/692))
* [`8797328`](softprops/action-gh-release@8797328) chore(deps): bump actions/checkout in the github-actions group ([#689](https://redirect.github.com/softprops/action-gh-release/issues/689))
* [`1bfc62a`](softprops/action-gh-release@1bfc62a) chore(deps): bump the npm group across 1 directory with 5 updates ([#697](https://redirect.github.com/softprops/action-gh-release/issues/697))
* See full diff in [compare view](softprops/action-gh-release@5be0e66...a06a81a)
  
Updates `github/codeql-action` from 4.31.5 to 4.31.7
Release notes

*Sourced from [github/codeql-action's releases](https://github.com/github/codeql-action/releases).*

> v4.31.7
> -------
>
> CodeQL Action Changelog
> =======================
>
> See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.
>
> 4.31.7 - 05 Dec 2025
> --------------------
>
> * Update default CodeQL bundle version to 2.23.7. [#3343](https://redirect.github.com/github/codeql-action/pull/3343)
>
> See the full [CHANGELOG.md](https://github.com/github/codeql-action/blob/v4.31.7/CHANGELOG.md) for more information.
>
> v4.31.6
> -------
>
> CodeQL Action Changelog
> =======================
>
> See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.
>
> 4.31.6 - 01 Dec 2025
> --------------------
>
> No user facing changes.
>
> See the full [CHANGELOG.md](https://github.com/github/codeql-action/blob/v4.31.6/CHANGELOG.md) for more information.


Changelog

*Sourced from [github/codeql-action's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).*

> CodeQL Action Changelog
> =======================
>
> See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.
>
> [UNRELEASED]
> ------------
>
> No user facing changes.
>
> 4.31.7 - 05 Dec 2025
> --------------------
>
> * Update default CodeQL bundle version to 2.23.7. [#3343](https://redirect.github.com/github/codeql-action/pull/3343)
>
> 4.31.6 - 01 Dec 2025
> --------------------
>
> No user facing changes.
>
> 4.31.5 - 24 Nov 2025
> --------------------
>
> * Update default CodeQL bundle version to 2.23.6. [#3321](https://redirect.github.com/github/codeql-action/pull/3321)
>
> 4.31.4 - 18 Nov 2025
> --------------------
>
> No user facing changes.
>
> 4.31.3 - 13 Nov 2025
> --------------------
>
> * CodeQL Action v3 will be deprecated in December 2026. The Action now logs a warning for customers who are running v3 but could be running v4. For more information, see [Upcoming deprecation of CodeQL Action v3](https://github.blog/changelog/2025-10-28-upcoming-deprecation-of-codeql-action-v3/).
> * Update default CodeQL bundle version to 2.23.5. [#3288](https://redirect.github.com/github/codeql-action/pull/3288)
>
> 4.31.2 - 30 Oct 2025
> --------------------
>
> No user facing changes.
>
> 4.31.1 - 30 Oct 2025
> --------------------
>
> * The `add-snippets` input has been removed from the `analyze` action. This input has been deprecated since CodeQL Action 3.26.4 in August 2024 when this removal was announced.
>
> 4.31.0 - 24 Oct 2025
> --------------------
>
> * Bump minimum CodeQL bundle version to 2.17.6. [#3223](https://redirect.github.com/github/codeql-action/pull/3223)
> * When SARIF files are uploaded by the `analyze` or `upload-sarif` actions, the CodeQL Action automatically performs post-processing steps to prepare the data for the upload. Previously, these post-processing steps were only performed before an upload took place. We are now changing this so that the post-processing steps will always be performed, even when the SARIF files are not uploaded. This does not change anything for the `upload-sarif` action. For `analyze`, this may affect Advanced Setup for CodeQL users who specify a value other than `always` for the `upload` input. [#3222](https://redirect.github.com/github/codeql-action/pull/3222)
>
> 4.30.9 - 17 Oct 2025
> --------------------
>
> * Update default CodeQL bundle version to 2.23.3. [#3205](https://redirect.github.com/github/codeql-action/pull/3205)
> * Experimental: A new `setup-codeql` action has been added which is similar to `init`, except it only installs the CodeQL CLI and does not initialize a database. Do not use this in production as it is part of an internal experiment and subject to change at any time. [#3204](https://redirect.github.com/github/codeql-action/pull/3204)
>
> 4.30.8 - 10 Oct 2025
> --------------------
>
> No user facing changes.

... (truncated)


Commits

* [`cf1bb45`](github/codeql-action@cf1bb45) Merge pull request [#3344](https://redirect.github.com/github/codeql-action/issues/3344) from github/update-v4.31.7-f5c63fadd
* [`f4ebe95`](github/codeql-action@f4ebe95) Update changelog for v4.31.7
* [`f5c63fa`](github/codeql-action@f5c63fa) Merge pull request [#3343](https://redirect.github.com/github/codeql-action/issues/3343) from github/update-bundle/codeql-bundle-v2.23.7
* [`a2c01e7`](github/codeql-action@a2c01e7) Add changelog note
* [`ac34c13`](github/codeql-action@ac34c13) Update default bundle to codeql-bundle-v2.23.7
* [`267c467`](github/codeql-action@267c467) Merge pull request [#3339](https://redirect.github.com/github/codeql-action/issues/3339) from github/dependabot/npm\_and\_yarn/npm-minor-77d264...
* [`aeabef7`](github/codeql-action@aeabef7) Merge branch 'main' into dependabot/npm\_and\_yarn/npm-minor-77d26487b0
* [`78357d3`](github/codeql-action@78357d3) Merge pull request [#3341](https://redirect.github.com/github/codeql-action/issues/3341) from github/mbg/ci/update-cs-config-cli-tests
* [`d61a6fa`](github/codeql-action@d61a6fa) Update CLI config test to account for overlay db changes on PRs
* [`ce27e95`](github/codeql-action@ce27e95) Rebuild
* Additional commits viewable in [compare view](github/codeql-action@fdbfb4d...cf1bb45)
  
Updates `peter-evans/create-pull-request` from 7.0.9 to 7.0.11
Release notes

*Sourced from [peter-evans/create-pull-request's releases](https://github.com/peter-evans/create-pull-request/releases).*

> Create Pull Request v7.0.11
> ---------------------------
>
> What's Changed
> --------------
>
> * fix: restrict remote prune to self-hosted runners by [`@​peter-evans`](https://github.com/peter-evans) in [peter-evans/create-pull-request#4250](https://redirect.github.com/peter-evans/create-pull-request/pull/4250)
>
> **Full Changelog**: <peter-evans/create-pull-request@v7.0.10...v7.0.11>
>
> Create Pull Request v7.0.10
> ---------------------------
>
> ⚙️ Fixes an issue where updating a pull request failed when targeting a forked repository with the same owner as its parent.
>
> What's Changed
> --------------
>
> * build(deps): bump the github-actions group with 2 updates by [`@​dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4235](https://redirect.github.com/peter-evans/create-pull-request/pull/4235)
> * build(deps-dev): bump prettier from 3.6.2 to 3.7.3 in the npm group by [`@​dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4240](https://redirect.github.com/peter-evans/create-pull-request/pull/4240)
> * fix: provider list pulls fallback for multi fork same owner by [`@​peter-evans`](https://github.com/peter-evans) in [peter-evans/create-pull-request#4245](https://redirect.github.com/peter-evans/create-pull-request/pull/4245)
>
> New Contributors
> ----------------
>
> * [`@​obnyis`](https://github.com/obnyis) made their first contribution in [peter-evans/create-pull-request#4064](https://redirect.github.com/peter-evans/create-pull-request/pull/4064)
>
> **Full Changelog**: <peter-evans/create-pull-request@v7.0.9...v7.0.10>


Commits

* [`22a9089`](peter-evans/create-pull-request@22a9089) fix: restrict remote prune to self-hosted runners ([#4250](https://redirect.github.com/peter-evans/create-pull-request/issues/4250))
* [`d4f3be6`](peter-evans/create-pull-request@d4f3be6) fix: provider list pulls fallback for multi fork same owner ([#4245](https://redirect.github.com/peter-evans/create-pull-request/issues/4245))
* [`bc8a47f`](peter-evans/create-pull-request@bc8a47f) build(deps-dev): bump prettier from 3.6.2 to 3.7.3 in the npm group ([#4240](https://redirect.github.com/peter-evans/create-pull-request/issues/4240))
* [`a67ef28`](peter-evans/create-pull-request@a67ef28) build(deps): bump the github-actions group with 2 updates ([#4235](https://redirect.github.com/peter-evans/create-pull-request/issues/4235))
* See full diff in [compare view](peter-evans/create-pull-request@84ae59a...22a9089)
  
Updates `ruby/setup-ruby` from 1.268.0 to 1.269.0
Release notes

*Sourced from [ruby/setup-ruby's releases](https://github.com/ruby/setup-ruby/releases).*

> v1.269.0
> --------
>
> What's Changed
> --------------
>
> * Account for Bundler 4 by [`@​eregon`](https://github.com/eregon) in [ruby/setup-ruby#832](https://redirect.github.com/ruby/setup-ruby/pull/832)
>
> **Full Changelog**: <ruby/setup-ruby@v1.268.0...v1.269.0>


Commits

* [`d697be2`](ruby/setup-ruby@d697be2) Account for Bundler 4
* See full diff in [compare view](ruby/setup-ruby@8aeb6ff...d697be2)
  
Updates `updatecli/updatecli-action` from 2.96.0 to 2.97.0
Release notes

*Sourced from [updatecli/updatecli-action's releases](https://github.com/updatecli/updatecli-action/releases).*

> v2.97.0 🌈
> ---------
>
> Changes
> -------
>
> * deps: update updatecli version to v0.111.0 @[updateclibot[bot]](https://github.com/apps/updateclibot) ([#986](https://redirect.github.com/updatecli/updatecli-action/issues/986))
> * deps(updatecli/policies): bump all policies @[updateclibot[bot]](https://github.com/apps/updateclibot) ([#985](https://redirect.github.com/updatecli/updatecli-action/issues/985))
>
> 🧰 Maintenance
> -------------
>
> * deps: bump Updatecli GH action to v2.96.0 @[updateclibot[bot]](https://github.com/apps/updateclibot) ([#982](https://redirect.github.com/updatecli/updatecli-action/issues/982))
>
> Contributors
> ------------
>
> [`@​updateclibot`](https://github.com/updateclibot)[bot] and [updateclibot[bot]](https://github.com/apps/updateclibot)


Commits

* [`9a21b69`](updatecli/updatecli-action@9a21b69) deps: update updatecli version to v0.111.0 ([#986](https://redirect.github.com/updatecli/updatecli-action/issues/986))
* [`afc5668`](updatecli/updatecli-action@afc5668) deps(updatecli/policies): bump all policies ([#985](https://redirect.github.com/updatecli/updatecli-action/issues/985))
* [`613ad53`](updatecli/updatecli-action@613ad53) deps: bump Updatecli GH action to v2.96.0 ([#982](https://redirect.github.com/updatecli/updatecli-action/issues/982))
* See full diff in [compare view](updatecli/updatecli-action@5ca3636...9a21b69)
  
Updates `actions/setup-node` from 6.0.0 to 6.1.0
Release notes

*Sourced from [actions/setup-node's releases](https://github.com/actions/setup-node/releases).*

> v6.1.0
> ------
>
> What's Changed
> --------------
>
> ### Enhancement:
>
> * Remove always-auth configuration handling by [`@​priyagupta108`](https://github.com/priyagupta108) in [actions/setup-node#1436](https://redirect.github.com/actions/setup-node/pull/1436)
>
> ### Dependency updates:
>
> * Upgrade `@​actions/cache` from 4.0.3 to 4.1.0 by [`@​dependabot`](https://github.com/dependabot)[bot] in [actions/setup-node#1384](https://redirect.github.com/actions/setup-node/pull/1384)
> * Upgrade actions/checkout from 5 to 6 by [`@​dependabot`](https://github.com/dependabot)[bot] in [actions/setup-node#1439](https://redirect.github.com/actions/setup-node/pull/1439)
> * Upgrade js-yaml from 3.14.1 to 3.14.2 by [`@​dependabot`](https://github.com/dependabot)[bot] in [actions/setup-node#1435](https://redirect.github.com/actions/setup-node/pull/1435)
>
> ### Documentation update:
>
> * Add example for restore-only cache in documentation by [`@​aparnajyothi-y`](https://github.com/aparnajyothi-y) in [actions/setup-node#1419](https://redirect.github.com/actions/setup-node/pull/1419)
>
> **Full Changelog**: <actions/setup-node@v6...v6.1.0>


Commits

* [`395ad32`](actions/setup-node@395ad32) Bump js-yaml from 3.14.1 to 3.14.2 ([#1435](https://redirect.github.com/actions/setup-node/issues/1435))
* [`a4d2e2b`](actions/setup-node@a4d2e2b) Bump actions/checkout from 5 to 6 ([#1439](https://redirect.github.com/actions/setup-node/issues/1439))
* [`b9b25d4`](actions/setup-node@b9b25d4) Remove always-auth configuration handling from action ([#1436](https://redirect.github.com/actions/setup-node/issues/1436))
* [`633bb92`](actions/setup-node@633bb92) Bump `@​actions/cache` from 4.0.3 to 4.1.0 ([#1384](https://redirect.github.com/actions/setup-node/issues/1384))
* [`dda4788`](actions/setup-node@dda4788) Add example for restore-only cache in documentation ([#1419](https://redirect.github.com/actions/setup-node/issues/1419))
* See full diff in [compare view](actions/setup-node@2028fbc...395ad32)
  
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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore  major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore  minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working

Projects

None yet

Development

Successfully merging this pull request may close these issues.

files not support glob match files: '.**/*.{exe,deb,tar.gz}'

2 participants