Skip to content

Commit

Permalink
Update github actions dependencies (major) (#1900)
Browse files Browse the repository at this point in the history
[![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 |
major | `v3` -> `v4` |
| [actions/deploy-pages](https://togithub.com/actions/deploy-pages) |
action | major | `v1` -> `v4` |
| [actions/setup-dotnet](https://togithub.com/actions/setup-dotnet) |
action | major | `v3` -> `v4` |
| [actions/setup-node](https://togithub.com/actions/setup-node) | action
| major | `v3` -> `v4` |
|
[actions/upload-artifact](https://togithub.com/actions/upload-artifact)
| action | major | `v3` -> `v4` |
|
[actions/upload-pages-artifact](https://togithub.com/actions/upload-pages-artifact)
| action | major | `v1` -> `v3` |
| [chromaui/action](https://togithub.com/chromaui/action) | action |
major | `v1` -> `v11` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

###
[`v4`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v400)

[Compare Source](https://togithub.com/actions/checkout/compare/v3...v4)

- [Support fetching without the --progress
option](https://togithub.com/actions/checkout/pull/1067)
-   [Update to node20](https://togithub.com/actions/checkout/pull/1436)

</details>

<details>
<summary>actions/deploy-pages (actions/deploy-pages)</summary>

### [`v4`](https://togithub.com/actions/deploy-pages/compare/v3...v4)

[Compare
Source](https://togithub.com/actions/deploy-pages/compare/v3...v4)

### [`v3`](https://togithub.com/actions/deploy-pages/compare/v2...v3)

[Compare
Source](https://togithub.com/actions/deploy-pages/compare/v2...v3)

### [`v2`](https://togithub.com/actions/deploy-pages/compare/v1...v2)

[Compare
Source](https://togithub.com/actions/deploy-pages/compare/v1...v2)

</details>

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

### [`v4`](https://togithub.com/actions/setup-dotnet/compare/v3...v4)

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

</details>

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

### [`v4`](https://togithub.com/actions/setup-node/compare/v3...v4)

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

</details>

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

### [`v4`](https://togithub.com/actions/upload-artifact/compare/v3...v4)

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

</details>

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

###
[`v3`](https://togithub.com/actions/upload-pages-artifact/compare/v2...v3)

[Compare
Source](https://togithub.com/actions/upload-pages-artifact/compare/v2...v3)

###
[`v2`](https://togithub.com/actions/upload-pages-artifact/compare/v1...v2)

[Compare
Source](https://togithub.com/actions/upload-pages-artifact/compare/v1...v2)

</details>

<details>
<summary>chromaui/action (chromaui/action)</summary>

### [`v11`](https://togithub.com/chromaui/action/compare/v10...v11)

[Compare Source](https://togithub.com/chromaui/action/compare/v10...v11)

### [`v10`](https://togithub.com/chromaui/action/compare/v9...v10)

[Compare Source](https://togithub.com/chromaui/action/compare/v9...v10)

### [`v9`](https://togithub.com/chromaui/action/compare/v1...v9)

[Compare Source](https://togithub.com/chromaui/action/compare/v1...v9)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "monthly" (UTC), 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/ni/nimble).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Mar 5, 2024
1 parent 136a79b commit 5ed8048
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: env.HAS_GITHUBPAGESDEPLOYTOKEN == 'true'
with:
# Required for beachball changelog detection
Expand All @@ -35,19 +35,19 @@ jobs:
# Cannot rely on GITHUB_TOKEN with workflow contents permission
# See: https://github.com/orgs/community/discussions/40971
token: ${{ secrets.GITHUBPAGESDEPLOYTOKEN }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: env.HAS_GITHUBPAGESDEPLOYTOKEN == 'false'
with:
# Required for beachball changelog detection
fetch-depth: 0

# Install dependencies
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
global-json-file: packages/nimble-blazor/global.json
- run: dotnet --info
working-directory: packages/nimble-blazor/
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
Expand All @@ -71,7 +71,7 @@ jobs:

# Pack
- run: npm run pack
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: packages
path: |
Expand All @@ -83,14 +83,14 @@ jobs:
# https://github.com/actions/upload-pages-artifact/issues/45
- name: Pages file permission workaround
run: chmod -c -R +rX packages/site/dist
- uses: actions/upload-pages-artifact@v1
- uses: actions/upload-pages-artifact@v3
with:
path: 'packages/site/dist'

# Publish to Chromatic (from any push)
- name: Publish to Chromatic
if: env.HAS_CHROMATIC_PROJECT_TOKEN == 'true' && github.event_name == 'push'
uses: chromaui/action@v1
uses: chromaui/action@v11
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
onlyChanged: "!startsWith(github.ref, 'refs/heads/main')" # Use TurboSnap for PR builds
Expand Down Expand Up @@ -154,4 +154,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit 5ed8048

Please sign in to comment.