Skip to content

Commit b0517bc

Browse files
committed
Fix fetch-tags in dependency change detector workflow
1 parent 7b07ac3 commit b0517bc

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/nuget-packages-version-change-detector.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ jobs:
4343
with:
4444
ref: ${{ github.event.pull_request.head.ref }}
4545
fetch-depth: 1
46-
fetch-tags: true
4746

48-
- name: Fetch base branch
49-
run: git fetch origin ${{ github.event.pull_request.base.ref }}:refs/remotes/origin/${{ github.event.pull_request.base.ref }} --depth=1
47+
- name: Fetch base branch and tags
48+
run: |
49+
git fetch origin ${{ github.event.pull_request.base.ref }}:refs/remotes/origin/${{ github.event.pull_request.base.ref }} --depth=1
50+
git fetch --tags origin
5051
5152
- uses: actions/setup-python@v5
5253
with:

docs/en/package-version-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Package Version Changes
99

10-
## 10.3.0
10+
## 10.3.1
1111

1212
| Package | Old Version | New Version | PR |
1313
|---------|-------------|-------------|-----|

0 commit comments

Comments
 (0)