diff --git a/.github/workflows/template_version.yml b/.github/workflows/template_version.yml index 9317872c2f..0f6a43c6f6 100644 --- a/.github/workflows/template_version.yml +++ b/.github/workflows/template_version.yml @@ -19,10 +19,10 @@ jobs: fetch-depth: 0 - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v1 + uses: gittools/actions/gitversion/setup@v3 with: versionSpec: '5.x' - name: Use GitVersion id: gitversion # step id used as reference for output values - uses: gittools/actions/gitversion/execute@v1 \ No newline at end of file + uses: gittools/actions/gitversion/execute@v3 \ No newline at end of file diff --git a/src/SwedbankPay.Sdk.Infrastructure/PaymentOrder/Urls/UrlsRequestDto.cs b/src/SwedbankPay.Sdk.Infrastructure/PaymentOrder/Urls/UrlsRequestDto.cs index fca9076fda..6d1e4795d1 100644 --- a/src/SwedbankPay.Sdk.Infrastructure/PaymentOrder/Urls/UrlsRequestDto.cs +++ b/src/SwedbankPay.Sdk.Infrastructure/PaymentOrder/Urls/UrlsRequestDto.cs @@ -12,6 +12,7 @@ public UrlsRequestDto(IUrls urls) CancelUrl = urls.CancelUrl?.ToString(); CallbackUrl = urls.CallbackUrl?.ToString(); LogoUrl = urls.LogoUrl?.ToString(); + TermsOfServiceUrl = urls.TermsOfServiceUrl?.ToString(); } public string? Id { get; set; } @@ -21,4 +22,5 @@ public UrlsRequestDto(IUrls urls) public string? CancelUrl { get; set; } public string? CallbackUrl { get; set; } public string? LogoUrl { get; set; } + public string? TermsOfServiceUrl { get; set; } } \ No newline at end of file