From 5ed80484be42de1b04f77dae10ea4d4c5daa35a6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 23:42:27 -0600 Subject: [PATCH] Update github actions dependencies (major) (#1900) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![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
actions/checkout (actions/checkout) ### [`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)
actions/deploy-pages (actions/deploy-pages) ### [`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)
actions/setup-dotnet (actions/setup-dotnet) ### [`v4`](https://togithub.com/actions/setup-dotnet/compare/v3...v4) [Compare Source](https://togithub.com/actions/setup-dotnet/compare/v3...v4)
actions/setup-node (actions/setup-node) ### [`v4`](https://togithub.com/actions/setup-node/compare/v3...v4) [Compare Source](https://togithub.com/actions/setup-node/compare/v3...v4)
actions/upload-artifact (actions/upload-artifact) ### [`v4`](https://togithub.com/actions/upload-artifact/compare/v3...v4) [Compare Source](https://togithub.com/actions/upload-artifact/compare/v3...v4)
actions/upload-pages-artifact (actions/upload-pages-artifact) ### [`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)
chromaui/action (chromaui/action) ### [`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)
--- ### 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. --- - [ ] 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). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e5b3210cfd..6293471a17 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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' @@ -71,7 +71,7 @@ jobs: # Pack - run: npm run pack - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: packages path: | @@ -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 @@ -154,4 +154,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v4