Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix node-version-file interprets entire package.json as a version #865

Merged
merged 2 commits into from Dec 14, 2023

Conversation

NullVoxPopuli
Copy link
Contributor

@NullVoxPopuli NullVoxPopuli commented Oct 4, 2023

Description:
Resolves an issue where json files were used as node-versions

After building the action on another branch:
Here is a demonstration of the change working: https://github.com/NullVoxPopuli/actions-testing/actions/runs/6411088958/job/17405783026#step:4:11
And previously not working: https://github.com/NullVoxPopuli/actions-testing/actions/runs/6411088958/job/17405783212#step:4:11 (as described in issue #864)

Related issue:
#864

Check list:

  • Mark if documentation changes are required.
  • Mark if tests were added or updated to cover the changes.

@@ -105,7 +105,17 @@ function resolveVersionInput(): string {
);
}

version = parseNodeVersionFile(fs.readFileSync(versionFilePath, 'utf8'));
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

previously, it was assumed that if a version-file was provided, it would always contain a node version.

This is not the case

const manifest = JSON.parse(contents);

// JSON can parse numbers, but that's handled later
if (typeof manifest === 'object') {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the fix is this typeof x === 'object' check followed by the early return below

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you translate more info please

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do you mean?

Copy link

@Techn1x Techn1x left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FWIW, the fix makes sense to me.

@NullVoxPopuli
Copy link
Contributor Author

@nikolai-laevskii lemme know if you'd like to see changes! thanks! <3

@nikolai-laevskii
Copy link
Contributor

Thank you for the pull request everything looks great! We are planning to accept these changes.

But could you please update dist by running npm run build? This should resolve the last failing test.
Also, builds sometimes can come out different if they were built on different systems, which might cause checks to fail again, so if you work from Windows it's recommended to use WSL when building. If you can't use WSL for some reason that's ok too, we will just update build ourselves with follow-up pull request.

Thanks again! 😄

@nikolai-laevskii nikolai-laevskii self-assigned this Oct 18, 2023
@NullVoxPopuli NullVoxPopuli changed the title Fix https://github.com/actions/setup-node/issues/864 Fix node-version-file interprets entire package.json as a version Oct 25, 2023
@NullVoxPopuli
Copy link
Contributor Author

@nikolai-laevskii I just rebased and pushed the output of npm run build! thanks!!

I use ubuntu desktop for dev, so 🤞 everything is ok!

@Mrquinn5
Copy link

Mrquinn5 commented Nov 11, 2023 via email

@HarithaVattikuti
Copy link
Contributor

Hello @NullVoxPopuli,

Thank you for your pull request. I still see some checks are failing for this PR. Could you please sync with the main branch to fix checks?

If you have any other concerns, please feel free to share them!

Thanks again 😄

@NullVoxPopuli
Copy link
Contributor Author

NullVoxPopuli commented Dec 11, 2023

@HarithaVattikuti didn't look like the failures were anything to do with this PR, but rebase has occurred!

Thank you!

@dmitry-shibanov dmitry-shibanov merged commit b39b52d into actions:main Dec 14, 2023
160 checks passed
@NullVoxPopuli NullVoxPopuli deleted the fix-864 branch December 15, 2023 22:33
renovate bot added a commit to SAP/ui5-webcomponents-react that referenced this pull request Dec 18, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/SAP/ui5-webcomponents-react).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mergify bot pushed a commit to Balvajs/delete-stale-branches that referenced this pull request Dec 18, 2023
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: Balvajs Renovate Bot <406530+balvajs-renovate[bot]@users.noreply.github.com>
mergify bot pushed a commit to Balvajs/dismiss-stale-reviews that referenced this pull request Dec 18, 2023
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: Balvajs Renovate Bot <406530+balvajs-renovate[bot]@users.noreply.github.com>
renovate bot added a commit to Johannes-Andersen/partall that referenced this pull request Dec 18, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Johannes-Andersen/partall).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to Johannes-Andersen/Johannes that referenced this pull request Dec 18, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Johannes-Andersen/Johannes).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
karfau pushed a commit to xmldom/xmldom that referenced this pull request Dec 19, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/xmldom/xmldom).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh pushed a commit to fuxingloh/crypto-frontmatter that referenced this pull request Dec 20, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/levaintech/frontmatter).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh pushed a commit to fuxingloh/contented that referenced this pull request Dec 20, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/levaintech/contented).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to simonknittel/sinister-incorporated that referenced this pull request Dec 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/simonknittel/sinister-incorporated).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCJ9-->
fuxingloh pushed a commit to levaintech/sticky that referenced this pull request Jan 2, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| major | `v3.8.2` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

###
[`v4.0.0`](https://togithub.com/actions/setup-node/releases/tag/v4.0.0)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v3.8.2...v4.0.0)

##### What's Changed

In scope of this release we changed version of node runtime for action
from node16 to node20 and updated dependencies in
[actions/setup-node#866

Besides, release contains such changes as:

- Upgrade actions/checkout to v4 by
[@&#8203;gmembre-zenika](https://togithub.com/gmembre-zenika) in
[actions/setup-node#868
- Update actions/checkout for documentation and yaml by
[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in
[actions/setup-node#876

##### New Contributors

- [@&#8203;gmembre-zenika](https://togithub.com/gmembre-zenika) made
their first contribution in
[actions/setup-node#868

**Full Changelog**:
actions/setup-node@v3...v4.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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/levaintech/sticky).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
beeme1mr pushed a commit to open-feature/flagd-schemas that referenced this pull request Jan 3, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| major | `v3.8.1` -> `v4.0.1` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

###
[`v4.0.0`](https://togithub.com/actions/setup-node/releases/tag/v4.0.0)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v3.8.2...v4.0.0)

##### What's Changed

In scope of this release we changed version of node runtime for action
from node16 to node20 and updated dependencies in
[actions/setup-node#866

Besides, release contains such changes as:

- Upgrade actions/checkout to v4 by
[@&#8203;gmembre-zenika](https://togithub.com/gmembre-zenika) in
[actions/setup-node#868
- Update actions/checkout for documentation and yaml by
[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in
[actions/setup-node#876

##### New Contributors

- [@&#8203;gmembre-zenika](https://togithub.com/gmembre-zenika) made
their first contribution in
[actions/setup-node#868

**Full Changelog**:
actions/setup-node@v3...v4.0.0

###
[`v3.8.2`](https://togithub.com/actions/setup-node/releases/tag/v3.8.2)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v3.8.1...v3.8.2)

##### What's Changed

- Update semver by
[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in
[actions/setup-node#861
- Update temp directory creation by
[@&#8203;nikolai-laevskii](https://togithub.com/nikolai-laevskii) in
[actions/setup-node#859
- Bump [@&#8203;babel/traverse](https://togithub.com/babel/traverse)
from 7.15.4 to 7.23.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[actions/setup-node#870
- Add notice about binaries not being updated yet by
[@&#8203;nikolai-laevskii](https://togithub.com/nikolai-laevskii) in
[actions/setup-node#872
- Update toolkit cache and core by
[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) and
[@&#8203;seongwon-privatenote](https://togithub.com/seongwon-privatenote)
in
[actions/setup-node#875

**Full Changelog**:
actions/setup-node@v3...v3.8.2

</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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-feature/flagd-schemas).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS4yIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mjnagel added a commit to defenseunicorns/uds-core that referenced this pull request Feb 8, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://togithub.com/actions/checkout) | action |
pinDigest | -> `b4ffde6` |
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.2` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | major | `v3.1.3` -> `v4.3.1` |
| [docker/login-action](https://togithub.com/docker/login-action) |
action | pinDigest | -> `343f7c4` |
|
[google-github-actions/release-please-action](https://togithub.com/google-github-actions/release-please-action)
| action | major | `v3` -> `v4` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.2`](https://togithub.com/actions/setup-node/releases/tag/v4.0.2)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.1...v4.0.2)

#### What's Changed

- Add support for `volta.extends` by
[@&#8203;ThisIsManta](https://togithub.com/ThisIsManta) in
[actions/setup-node#921
- Add support for arm64 Windows by
[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in
[actions/setup-node#927

#### New Contributors

- [@&#8203;ThisIsManta](https://togithub.com/ThisIsManta) made their
first contribution in
[actions/setup-node#921

**Full Changelog**:
actions/setup-node@v4.0.1...v4.0.2

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</details>

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.3.1`](https://togithub.com/actions/upload-artifact/releases/tag/v4.3.1)

[Compare
Source](https://togithub.com/actions/upload-artifact/compare/v4.3.0...v4.3.1)

- Bump
[@&#8203;actions/artifacts](https://togithub.com/actions/artifacts) to
latest version to include [updated GHES host
check](https://togithub.com/actions/toolkit/pull/1648)

###
[`v4.3.0`](https://togithub.com/actions/upload-artifact/releases/tag/v4.3.0)

[Compare
Source](https://togithub.com/actions/upload-artifact/compare/v4.2.0...v4.3.0)

##### What's Changed

- Reorganize upload code in prep for merge logic & add more tests by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#504
- Add sub-action to merge artifacts by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#505

**Full Changelog**:
actions/upload-artifact@v4...v4.3.0

###
[`v4.2.0`](https://togithub.com/actions/upload-artifact/releases/tag/v4.2.0)

[Compare
Source](https://togithub.com/actions/upload-artifact/compare/v4.1.0...v4.2.0)

##### What's Changed

- Ability to overwrite an Artifact by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#501

**Full Changelog**:
actions/upload-artifact@v4...v4.2.0

###
[`v4.1.0`](https://togithub.com/actions/upload-artifact/releases/tag/v4.1.0)

[Compare
Source](https://togithub.com/actions/upload-artifact/compare/v4.0.0...v4.1.0)

#### What's Changed

- Add migrations docs by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#482
- Update README.md by
[@&#8203;samuelwine](https://togithub.com/samuelwine) in
[actions/upload-artifact#492
- Support artifact-url output by
[@&#8203;konradpabjan](https://togithub.com/konradpabjan) in
[actions/upload-artifact#496
- Update readme to reflect new 500 artifact per job limit by
[@&#8203;robherley](https://togithub.com/robherley) in
[actions/upload-artifact#497

#### New Contributors

- [@&#8203;samuelwine](https://togithub.com/samuelwine) made their first
contribution in
[actions/upload-artifact#492

**Full Changelog**:
actions/upload-artifact@v4...v4.1.0

###
[`v4.0.0`](https://togithub.com/actions/upload-artifact/releases/tag/v4.0.0)

[Compare
Source](https://togithub.com/actions/upload-artifact/compare/v3.1.3...v4.0.0)

#### What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major
changes to the backend architecture of Artifacts. They have numerous
performance and behavioral improvements.

For more information, see the
[@&#8203;actions/artifact](https://togithub.com/actions/toolkit/tree/main/packages/artifact)
documentation.

#### New Contributors

- [@&#8203;vmjoseph](https://togithub.com/vmjoseph) made their first
contribution in
[actions/upload-artifact#464

**Full Changelog**:
actions/upload-artifact@v3...v4.0.0

</details>

<details>
<summary>google-github-actions/release-please-action
(google-github-actions/release-please-action)</summary>

###
[`v4`](https://togithub.com/google-github-actions/release-please-action/compare/v3...v4)

[Compare
Source](https://togithub.com/google-github-actions/release-please-action/compare/v3...v4)

</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.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/defenseunicorns/uds-core).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Micah Nagel <micah.nagel@defenseunicorns.com>
Co-authored-by: Micah Nagel <micah.nagel@gmail.com>
andipaetzold pushed a commit to andipaetzold/react-firehooks that referenced this pull request Mar 14, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| patch | `v4.0.0` -> `v4.0.2` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

###
[`v4.0.2`](https://togithub.com/actions/setup-node/releases/tag/v4.0.2)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.1...v4.0.2)

#### What's Changed

- Add support for `volta.extends` by
[@&#8203;ThisIsManta](https://togithub.com/ThisIsManta) in
[actions/setup-node#921
- Add support for arm64 Windows by
[@&#8203;dmitry-shibanov](https://togithub.com/dmitry-shibanov) in
[actions/setup-node#927

#### New Contributors

- [@&#8203;ThisIsManta](https://togithub.com/ThisIsManta) made their
first contribution in
[actions/setup-node#921

**Full Changelog**:
actions/setup-node@v4.0.1...v4.0.2

###
[`v4.0.1`](https://togithub.com/actions/setup-node/releases/tag/v4.0.1)

[Compare
Source](https://togithub.com/actions/setup-node/compare/v4.0.0...v4.0.1)

##### What's Changed

- Ignore engines in Yarn 1 e2e-cache tests by
[@&#8203;trivikr](https://togithub.com/trivikr) in
[actions/setup-node#882
- Update setup-node references in the README.md file to setup-node@v4 by
[@&#8203;jwetzell](https://togithub.com/jwetzell) in
[actions/setup-node#884
- Update reusable workflows to use Node.js v20 by
[@&#8203;MaksimZhukov](https://togithub.com/MaksimZhukov) in
[actions/setup-node#889
- Add fix for cache to resolve slow post action step by
[@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) in
[actions/setup-node#917
- Fix README.md by [@&#8203;takayamaki](https://togithub.com/takayamaki)
in
[actions/setup-node#898
- Add `package.json` to `node-version-file` list of examples. by
[@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) in
[actions/setup-node#879
- Fix node-version-file interprets entire package.json as a version by
[@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) in
[actions/setup-node#865

##### New Contributors

- [@&#8203;trivikr](https://togithub.com/trivikr) made their first
contribution in
[actions/setup-node#882
- [@&#8203;jwetzell](https://togithub.com/jwetzell) made their first
contribution in
[actions/setup-node#884
- [@&#8203;aparnajyothi-y](https://togithub.com/aparnajyothi-y) made
their first contribution in
[actions/setup-node#917
- [@&#8203;takayamaki](https://togithub.com/takayamaki) made their first
contribution in
[actions/setup-node#898
- [@&#8203;TWiStErRob](https://togithub.com/TWiStErRob) made their first
contribution in
[actions/setup-node#879
- [@&#8203;NullVoxPopuli](https://togithub.com/NullVoxPopuli) made their
first contribution in
[actions/setup-node#865

**Full Changelog**:
actions/setup-node@v4...v4.0.1

</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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/andipaetzold/react-firehooks).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuMTczLjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants