diff --git a/.github/workflows/_build-layered.yml b/.github/workflows/_build-layered.yml index c8e16ee..37df716 100644 --- a/.github/workflows/_build-layered.yml +++ b/.github/workflows/_build-layered.yml @@ -49,7 +49,7 @@ jobs: # https://github.com/actions/setup-dotnet - name: Get .NET externals - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v5 with: dotnet-version: 8.0.x dotnet-quality: 'ga' diff --git a/.github/workflows/_build-test.yml b/.github/workflows/_build-test.yml index ca22803..8518590 100644 --- a/.github/workflows/_build-test.yml +++ b/.github/workflows/_build-test.yml @@ -67,7 +67,7 @@ jobs: # https://github.com/actions/setup-dotnet - name: Get .NET externals - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 # https://github.com/actions/cache/blob/main/examples.md#c---nuget - name: Get any cached NuGet packages from the last run diff --git a/.github/workflows/_build.yml b/.github/workflows/_build.yml index 7ab1e35..891858a 100644 --- a/.github/workflows/_build.yml +++ b/.github/workflows/_build.yml @@ -33,7 +33,7 @@ jobs: # https://github.com/actions/setup-dotnet - name: Get .NET externals - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: | 8.0.x diff --git a/.github/workflows/_codeql.yml b/.github/workflows/_codeql.yml index 5c9951e..bda6595 100644 --- a/.github/workflows/_codeql.yml +++ b/.github/workflows/_codeql.yml @@ -49,7 +49,7 @@ jobs: # https://github.com/actions/setup-dotnet - name: Get .NET externals - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 # Initialize the CodeQL tools for scanning. Prefix the query list with "+" to use these queries and those in the config file. # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs diff --git a/.github/workflows/_deploy-nuget.yml b/.github/workflows/_deploy-nuget.yml index 4400c65..61cd1cb 100644 --- a/.github/workflows/_deploy-nuget.yml +++ b/.github/workflows/_deploy-nuget.yml @@ -42,7 +42,7 @@ jobs: merge-multiple: true - name: Get .NET externals - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 - name: List files in the folder run: find . -name "*.nupkg" -type f -exec echo {} \;