Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
test:
name: Test
runs-on: windows-2019
runs-on: windows-latest
steps:
- name: Check out code
uses: actions/checkout@v4.1.1
Expand All @@ -37,13 +37,13 @@ jobs:
fetch-depth: 0

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0.10.2
uses: gittools/actions/gitversion/setup@v4.0.1
with:
versionSpec: "5.5.x"

- name: Version with GitVersion # https://github.com/marketplace/actions/use-actions
id: gitversion
uses: gittools/actions/gitversion/execute@v0.10.2
uses: gittools/actions/gitversion/execute@v4.0.1

- name: Push version tag
uses: tvdias/github-tagger@v0.0.2
Expand Down
12 changes: 2 additions & 10 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
assembly-versioning-scheme: MajorMinorPatch
mode: Mainline
branches:
master:
regex: ^master
increment: Minor
increment: Minor
ignore:
sha: []
merge-message-formats: {}
workflow: TrunkBased/preview1

major-version-bump-message: (BREAKING CHANGES?|major)(\(.*?\))?:\s?
minor-version-bump-message: (feature|minor|feat)(\(.*?\))?:\s?
patch-version-bump-message: (fix|patch|hotfix)(\(.*?\))?:\s?
Expand Down