Skip to content

Commit

Permalink
Merge pull request #650 from SwedbankPay/release/4.1.2
Browse files Browse the repository at this point in the history
Release/4.1.2
  • Loading branch information
zunkas authored Nov 25, 2024
2 parents 24d4f9c + 84ced1f commit a7a999a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/template_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
uses: gittools/actions/gitversion/execute@v3
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand All @@ -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; }
}

0 comments on commit a7a999a

Please sign in to comment.