diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 997f7f92..9b782b0b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
@@ -41,7 +41,7 @@ jobs:
- name: Build
run: dotnet build --no-restore
- name: Save build artifacts
- uses: actions/cache/save@v5
+ uses: actions/cache/save@v6
with:
path: .
key: ${{ env.CACHE_KEY }}
@@ -50,13 +50,13 @@ jobs:
runs-on: ubuntu-latest
name: Test Auth0.Core
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Restore build artifacts
- uses: actions/cache/restore@v5
+ uses: actions/cache/restore@v6
with:
path: .
key: ${{ env.CACHE_KEY }}
@@ -64,7 +64,7 @@ jobs:
run: dotnet test tests/Auth0.Core.UnitTests/Auth0.Core.UnitTests.csproj --collect:"XPlat Code coverage" --results-directory ./TestResults/ /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura
- name: Update codecov report
- uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # pin@6.0.0
+ uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # pin@7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./TestResults/**/coverage.cobertura.xml
@@ -77,13 +77,13 @@ jobs:
runs-on: ubuntu-latest
name: Test Auth0.AuthenticationApi
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Restore build artifacts
- uses: actions/cache/restore@v5
+ uses: actions/cache/restore@v6
with:
path: .
key: ${{ env.CACHE_KEY }}
@@ -91,7 +91,7 @@ jobs:
run: dotnet test tests/Auth0.AuthenticationApi.IntegrationTests/Auth0.AuthenticationApi.IntegrationTests.csproj --collect:"XPlat Code coverage" --results-directory ./TestResults/ /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura
- name: Update codecov report
- uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # pin@6.0.0
+ uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # pin@7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./TestResults/**/coverage.cobertura.xml
@@ -103,13 +103,13 @@ jobs:
runs-on: ubuntu-latest
name: Test Auth0.ManagementApi
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Restore build artifacts
- uses: actions/cache/restore@v5
+ uses: actions/cache/restore@v6
with:
path: .
key: ${{ env.CACHE_KEY }}
@@ -119,7 +119,7 @@ jobs:
dotnet test tests/Auth0.ManagementApi.Test/Auth0.ManagementApi.Test.csproj --collect:"XPlat Code coverage" --results-directory ./TestResults/ /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura
- name: Update codecov report
- uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # pin@6.0.0
+ uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # pin@7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./TestResults/**/coverage.cobertura.xml
diff --git a/.github/workflows/nuget-release.yml b/.github/workflows/nuget-release.yml
index f947e0f8..a5eeaf92 100644
--- a/.github/workflows/nuget-release.yml
+++ b/.github/workflows/nuget-release.yml
@@ -29,7 +29,7 @@ jobs:
steps:
# Checkout the code
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
with:
fetch-depth: 0
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 232883bc..7888b825 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -94,7 +94,7 @@ jobs:
steps:
- name: Checkout code
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
with:
fetch-depth: 0
diff --git a/.github/workflows/rl-secure.yml b/.github/workflows/rl-secure.yml
index 762cfd84..a4c2a8ae 100644
--- a/.github/workflows/rl-secure.yml
+++ b/.github/workflows/rl-secure.yml
@@ -38,7 +38,7 @@ jobs:
steps:
- name: Checkout code
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
with:
fetch-depth: 0
diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml
index d78eb06b..5c2946f0 100644
--- a/.github/workflows/snyk.yml
+++ b/.github/workflows/snyk.yml
@@ -29,7 +29,7 @@ jobs:
- if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group'
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.merge_commit_sha || github.ref }}
@@ -42,7 +42,7 @@ jobs:
run: dotnet restore
- name: Run Snyk to check for vulnerabilities
- uses: snyk/actions/dotnet@b98d498629f1c368650224d6d212bf7dfa89e4bf # pin@0.4.0
+ uses: snyk/actions/dotnet@9adf32b1121593767fc3c057af55b55db032dc04 # pin@1.0.0
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
diff --git a/src/Auth0.AuthenticationApi/Auth0.AuthenticationApi.csproj b/src/Auth0.AuthenticationApi/Auth0.AuthenticationApi.csproj
index 3705a825..7dc9a5e6 100644
--- a/src/Auth0.AuthenticationApi/Auth0.AuthenticationApi.csproj
+++ b/src/Auth0.AuthenticationApi/Auth0.AuthenticationApi.csproj
@@ -16,8 +16,8 @@
-
-
+
+
diff --git a/src/Auth0.ManagementApi/Auth0.ManagementApi.Custom.props b/src/Auth0.ManagementApi/Auth0.ManagementApi.Custom.props
index 0c2b09e1..e3030f33 100644
--- a/src/Auth0.ManagementApi/Auth0.ManagementApi.Custom.props
+++ b/src/Auth0.ManagementApi/Auth0.ManagementApi.Custom.props
@@ -12,7 +12,7 @@
then re-add a single canonical reference to silence NU1504. -->
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
index 0e4a38af..12441852 100644
--- a/src/Directory.Build.props
+++ b/src/Directory.Build.props
@@ -7,7 +7,7 @@
enable
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive