security(CVE-2024-30105): update System.Text.Json to 8.0.4 #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Publish" | |
on: | |
push: | |
tags: | |
- "v**.**.**" # Semantic Versioning like "v1.22.3" | |
- "v**.**.**-**" # Prerelease Semantic Versioning like "v1.22.3-rc4" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.x | |
- name: Run publish with nuke | |
run: ./build/build.sh -Target Publish -Configuration Release --nuget_api_key_liz ${{ secrets.NUGET_API_KEY_LIZ }} --nuget_api_key_cake ${{ secrets.NUGET_API_KEY_CAKE }} |