Skip to content

Commit c39fc37

Browse files
authored
Update actions to support tags, update release notes (#225)
1 parent 5407d35 commit c39fc37

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

.github/workflows/dotnet.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
25+
with:
26+
fetch-tags: true
27+
fetch-depth: 0
2528
- name: Setup .NET
2629
uses: actions/setup-dotnet@v3
2730
with:
@@ -34,7 +37,10 @@ jobs:
3437
runs-on: windows-latest
3538

3639
steps:
37-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
41+
with:
42+
fetch-tags: true
43+
fetch-depth: 0
3844
- name: Setup .NET
3945
uses: actions/setup-dotnet@v3
4046
with:

.github/workflows/functional.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
22+
with:
23+
fetch-tags: true
24+
fetch-depth: 0
2225
- name: Setup .NET
2326
uses: actions/setup-dotnet@v3
2427
with:
@@ -37,7 +40,10 @@ jobs:
3740
runs-on: windows-latest
3841

3942
steps:
40-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v4
44+
with:
45+
fetch-tags: true
46+
fetch-depth: 0
4147
- name: Setup .NET
4248
uses: actions/setup-dotnet@v3
4349
with:

ReleaseNotes.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Release Notes
22

3-
## 6.5.10
3+
## 6.5.13
4+
* Update Azure.Identity to 1.15.0
5+
6+
## 6.5.10
47
* Fixed json parsing error on push for S3 [PR](https://github.com/emgarten/Sleet/pull/221)
58
* Updated McMaster.CommandLineUtils to the 4.1.1 and made several improvements to command line error handling
69
* Misc bug fixes

0 commit comments

Comments
 (0)