This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [ghcr.io/actions/actions-runner](https://redirect.github.com/actions/runner) | stage | minor | `2.321.0` -> `2.322.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>actions/runner (ghcr.io/actions/actions-runner)</summary> ### [`v2.322.0`](https://redirect.github.com/actions/runner/releases/tag/v2.322.0) [Compare Source](https://redirect.github.com/actions/runner/compare/v2.321.0...v2.322.0) #### What's Changed - Fix name of generated of artifact builds from GitHub workflow for arm artifacts by [@​satmandu](https://redirect.github.com/satmandu) in [https://github.com/actions/runner/pull/3568](https://redirect.github.com/actions/runner/pull/3568) - Ignore error when fail to report worker crash. by [@​TingluoHuang](https://redirect.github.com/TingluoHuang) in [https://github.com/actions/runner/pull/3588](https://redirect.github.com/actions/runner/pull/3588) - Fix null ref in 'OnEventWritten()' by [@​TingluoHuang](https://redirect.github.com/TingluoHuang) in [https://github.com/actions/runner/pull/3593](https://redirect.github.com/actions/runner/pull/3593) - Send stepNumber for annotation to run-service by [@​TingluoHuang](https://redirect.github.com/TingluoHuang) in [https://github.com/actions/runner/pull/3614](https://redirect.github.com/actions/runner/pull/3614) - Enable nuget audit. by [@​TingluoHuang](https://redirect.github.com/TingluoHuang) in [https://github.com/actions/runner/pull/3615](https://redirect.github.com/actions/runner/pull/3615) - Update dotnet install script. by [@​TingluoHuang](https://redirect.github.com/TingluoHuang) in [https://github.com/actions/runner/pull/3659](https://redirect.github.com/actions/runner/pull/3659) - Print immutable action package details in set up job logs by [@​heavymachinery](https://redirect.github.com/heavymachinery) in [https://github.com/actions/runner/pull/3645](https://redirect.github.com/actions/runner/pull/3645) - Update dotnet sdk to latest version [@​8](https://redirect.github.com/8).0.405 by [@​github-actions](https://redirect.github.com/github-actions) in [https://github.com/actions/runner/pull/3666](https://redirect.github.com/actions/runner/pull/3666) - Upgrade `buildx` from `0.18.0` to `0.19.3` (critical CVE) by [@​MPV](https://redirect.github.com/MPV) in [https://github.com/actions/runner/pull/3647](https://redirect.github.com/actions/runner/pull/3647) - Upgrade `docker` from `27.3.1` to `27.4.1` by [@​MPV](https://redirect.github.com/MPV) in [https://github.com/actions/runner/pull/3648](https://redirect.github.com/actions/runner/pull/3648) - Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.12.0 in /src by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/actions/runner/pull/3584](https://redirect.github.com/actions/runner/pull/3584) - Bump docker/setup-buildx-action from 2 to 3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/actions/runner/pull/3564](https://redirect.github.com/actions/runner/pull/3564) - Bump github/codeql-action from 2 to 3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/actions/runner/pull/3555](https://redirect.github.com/actions/runner/pull/3555) - Bump Moq from 4.20.70 to 4.20.72 in /src by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/actions/runner/pull/3672](https://redirect.github.com/actions/runner/pull/3672) #### New Contributors - [@​satmandu](https://redirect.github.com/satmandu) made their first contribution in [https://github.com/actions/runner/pull/3568](https://redirect.github.com/actions/runner/pull/3568) **Full Changelog**: https://github.com/actions/runner/compare/v2.321.0...v2.322.0 *Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners* #### Windows x64 We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows. The following snipped needs to be run on `powershell`: ```powershell ### Create a folder under the drive root mkdir \actions-runner ; cd \actions-runner ### Download the latest runner package Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-win-x64-2.322.0.zip -OutFile actions-runner-win-x64-2.322.0.zip ### Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.322.0.zip", "$PWD") ``` #### Windows arm64 We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows. The following snipped needs to be run on `powershell`: ```powershell ### Create a folder under the drive root mkdir \actions-runner ; cd \actions-runner ### Download the latest runner package Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-win-arm64-2.322.0.zip -OutFile actions-runner-win-arm64-2.322.0.zip ### Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.322.0.zip", "$PWD") ``` #### OSX x64 ```bash ### Create a folder mkdir actions-runner && cd actions-runner ### Download the latest runner package curl -O -L https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-osx-x64-2.322.0.tar.gz ### Extract the installer tar xzf ./actions-runner-osx-x64-2.322.0.tar.gz ``` #### OSX arm64 (Apple silicon) ```bash ### Create a folder mkdir actions-runner && cd actions-runner ### Download the latest runner package curl -O -L https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-osx-arm64-2.322.0.tar.gz ### Extract the installer tar xzf ./actions-runner-osx-arm64-2.322.0.tar.gz ``` #### Linux x64 ```bash ### Create a folder mkdir actions-runner && cd actions-runner ### Download the latest runner package curl -O -L https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-linux-x64-2.322.0.tar.gz ### Extract the installer tar xzf ./actions-runner-linux-x64-2.322.0.tar.gz ``` #### Linux arm64 ```bash ### Create a folder mkdir actions-runner && cd actions-runner ### Download the latest runner package curl -O -L https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-linux-arm64-2.322.0.tar.gz ### Extract the installer tar xzf ./actions-runner-linux-arm64-2.322.0.tar.gz ``` #### Linux arm ```bash ### Create a folder mkdir actions-runner && cd actions-runner ### Download the latest runner package curl -O -L https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-linux-arm-2.322.0.tar.gz ### Extract the installer tar xzf ./actions-runner-linux-arm-2.322.0.tar.gz ``` #### Using your self hosted runner For additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners) #### SHA-256 Checksums The SHA-256 checksums for the packages included in this build are shown below: - actions-runner-win-x64-2.322.0.zip <!-- BEGIN SHA win-x64 -->ace5de018c88492ca80a2323af53ff3f43d2c82741853efb302928f250516015<!-- END SHA win-x64 --> - actions-runner-win-arm64-2.322.0.zip <!-- BEGIN SHA win-arm64 -->74b67df4e94e3cd7d79b9320d421b0a62c66b77a019cf2471aba793dac0139fb<!-- END SHA win-arm64 --> - actions-runner-osx-x64-2.322.0.tar.gz <!-- BEGIN SHA osx-x64 -->aa0fc262363912167dcdbc746ffcdf7b8996bc587f51cf1bab38ad86cf70b6ea<!-- END SHA osx-x64 --> - actions-runner-osx-arm64-2.322.0.tar.gz <!-- BEGIN SHA osx-arm64 -->67d3b4dd6f1eec8ec43dda12c189cff68ec3ba1dfa054791cb446ddcfb39d2aa<!-- END SHA osx-arm64 --> - actions-runner-linux-x64-2.322.0.tar.gz <!-- BEGIN SHA linux-x64 -->b13b784808359f31bc79b08a191f5f83757852957dd8fe3dbfcc38202ccf5768<!-- END SHA linux-x64 --> - actions-runner-linux-arm64-2.322.0.tar.gz <!-- BEGIN SHA linux-arm64 -->a96b0cec7b0237ca5e4210982368c6f7d8c2ab1e5f6b2604c1ccede9cedcb143<!-- END SHA linux-arm64 --> - actions-runner-linux-arm-2.322.0.tar.gz <!-- BEGIN SHA linux-arm -->583fc5f933eb2f0f9f388ef304085629181cef54e63fe3445eed92dba4a87c46<!-- END SHA linux-arm --> </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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
title
| title |
|---|
| TrueCharts |
Community Helm Chart Catalog
TrueCharts is a catalog of highly optimised Helm Charts. Made for the community, By the community!
All our charts are supposed to work together and be easy to setup using any helm-compatible deployment tool, above all, give the average user more than enough options to tune things to their liking.
Getting started using TrueCharts
Support
Please check our FAQ, manual and Issue tracker There is a significant chance your issue has been reported before!
Still something not working as expected? Contact us! and we'll figure it out together!
Development
Our development process is fully distributed and agile, so every chart-maintainer is free to set their own roadmap and development speed and does not have to comply to a centralised roadmap. This ensures freedom and flexibility for everyone involved and makes sure you, the end user, always has the latest and greatest of every Chart installed.
Getting into creating Charts
For more information check the website: https://truecharts.org
Contact and Support
To contact the TrueCharts project:
-
Create an issue on Github issues
-
Open a Support Ticket
-
Send us an email
Contributors ✨
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
Licence
Truecharts, is primarily based on a AGPL-v3 license, this ensures almost everyone can use and modify our charts. Licences can vary on a per-Chart basis. This can easily be seen by the presence of a "LICENSE" file in said folder.
An exception to this, has been made for every document inside folders labeled as docs or doc and their subfolders: those folders are not licensed under AGPL-v3 and are considered "all rights reserved". Said content can be modified and changes submitted per PR, in accordance to the github End User License Agreement.
SPDX-License-Identifier: AGPL-3.0