Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Build HealthCheck UI docker image

on:
push :
branches:
- 'ExRam'

env:
DotNetVersion: '6.0.100'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup .NET Core ${{ env.DotNetVersion }}
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DotNetVersion }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Determine semantic version
uses: dotnet/nbgv@master
id: nbgv
with:
setAllVars: true

- name: Set versions
run: |
echo "version1=${{steps.nbgv.outputs.VersionMajor}}" >> $GITHUB_ENV
echo "version2=${{steps.nbgv.outputs.VersionMajor}}.${{steps.nbgv.outputs.VersionMinor}}" >> $GITHUB_ENV
echo "version3=${{steps.nbgv.outputs.VersionMajor}}.${{steps.nbgv.outputs.VersionMinor}}.${{steps.nbgv.outputs.BuildNumber}}" >> $GITHUB_ENV
echo "version4=${{steps.nbgv.outputs.VersionMajor}}.${{steps.nbgv.outputs.VersionMinor}}.${{steps.nbgv.outputs.BuildNumber}}${{steps.nbgv.outputs.PrereleaseVersion}}" >> $GITHUB_ENV
echo "version5=${{steps.nbgv.outputs.VersionMajor}}.${{steps.nbgv.outputs.VersionMinor}}.${{steps.nbgv.outputs.BuildNumber}}${{steps.nbgv.outputs.PrereleaseVersion}}.${{steps.nbgv.outputs.VersionHeight}}" >> $GITHUB_ENV

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.PACKAGES_TOKEN }}

- name: Build Dockerfile
uses: docker/build-push-action@v2
with:
push: true
file: build/docker-images/HealthChecks.UI.Image/Dockerfile
build-args: |
version=${{ env.version4 }}
versionHeight=${{steps.nbgv.outputs.VersionHeight}}
tags: |
ghcr.io/exram/aspnetcore.diagnostics.healthchecks.ui:${{ env.version1 }}
ghcr.io/exram/aspnetcore.diagnostics.healthchecks.ui:${{ env.version2 }}
ghcr.io/exram/aspnetcore.diagnostics.healthchecks.ui:${{ env.version3 }}
ghcr.io/exram/aspnetcore.diagnostics.healthchecks.ui:${{ env.version4 }}
ghcr.io/exram/aspnetcore.diagnostics.healthchecks.ui:${{ env.version5 }}

- name: Bump version and push tag
uses: mathieudutour/[email protected]
with:
custom_tag: AspNetCore.Diagnostics.HealthChecks.UI-Docker-${{ env.version5 }}
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_arangodb_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.ArangoDb/HealthChecks.ArangoDb.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_arangodb_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.ArangoDb/HealthChecks.ArangoDb.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_aws_s3_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Aws.S3/HealthChecks.Aws.S3.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_aws_s3_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Aws.S3/HealthChecks.Aws.S3.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_azure_iothub_cd .yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Azure.IoTHub/HealthChecks.Azure.IoTHub.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_azure_iothub_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Azure.IoTHub/HealthChecks.Azure.IoTHub.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_azurekeyvault_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.AzureKeyVault/HealthChecks.AzureKeyVault.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.AzureKeyVault/HealthChecks.AzureKeyVault.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_azureservicebus_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.AzureServiceBus/HealthChecks.AzureServiceBus.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.AzureServiceBus/HealthChecks.AzureServiceBus.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_azurestorage_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.AzureStorage/HealthChecks.AzureStorage.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_azurestorage_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.AzureStorage/HealthChecks.AzureStorage.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_consul_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Consul/HealthChecks.Consul.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_consul_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Consul/HealthChecks.Consul.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_cosmosdb_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.CosmosDb/HealthChecks.CosmosDb.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_cosmosdb_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.CosmosDb/HealthChecks.CosmosDb.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_documentdb_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.DocumentDb/HealthChecks.DocumentDb.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_documentdb_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.DocumentDb/HealthChecks.DocumentDb.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_dynamodb_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.DynamoDb/HealthChecks.DynamoDb.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_dynamodb_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.DynamoDb/HealthChecks.DynamoDb.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_elasticsearch_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Elasticsearch/HealthChecks.Elasticsearch.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Elasticsearch/HealthChecks.Elasticsearch.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_gcp_cloudfirestore_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Gcp.CloudFirestore/HealthChecks.Gcp.CloudFirestore.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Gcp.CloudFirestore/HealthChecks.Gcp.CloudFirestore.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_gremlin_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Gremlin/HealthChecks.Gremlin.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_gremlin_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Gremlin/HealthChecks.Gremlin.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_hangfire_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Hangfire/HealthChecks.Hangfire.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_hangfire_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Hangfire/HealthChecks.Hangfire.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_ibmmq_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.IbmMQ/HealthChecks.IbmMQ.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_ibmmq_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.IbmMQ/HealthChecks.IbmMQ.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_kafka_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Kafka/HealthChecks.Kafka.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_kafka_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.Kafka/HealthChecks.Kafka.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_mongodb_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.MongoDb/HealthChecks.MongoDb.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_mongodb_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.MongoDb/HealthChecks.MongoDb.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_mysql_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.MySql/HealthChecks.MySql.csproj -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/healthchecks_mysql_cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: dotnet pack
run: dotnet pack ./src/HealthChecks.MySql/HealthChecks.MySql.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG --include-source --include-symbols -o ./artifacts
- name: setup nuget
uses: NuGet/setup-nuget@v1.0.2
uses: NuGet/setup-nuget@v2.0.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
Loading