Skip to content

Commit a2b2d94

Browse files
committed
feat(ci): update all GitHub actions
1 parent f79679d commit a2b2d94

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build+test+deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
runs-on: ${{ matrix.os }}
3030

3131
steps:
32-
- uses: actions/checkout@v1
32+
- uses: actions/checkout@v4
3333
- name: Setup .NET
34-
uses: actions/setup-dotnet@v3
34+
uses: actions/setup-dotnet@v4
3535
with:
3636
dotnet-version: ${{ env.DOTNET_VERSION }}
3737
- name: Restore tools
@@ -51,9 +51,9 @@ jobs:
5151
runs-on: ubuntu-latest
5252

5353
steps:
54-
- uses: actions/checkout@v1
54+
- uses: actions/checkout@v4
5555
- name: Setup .NET
56-
uses: actions/setup-dotnet@v3
56+
uses: actions/setup-dotnet@v4
5757
with:
5858
dotnet-version: ${{ env.DOTNET_VERSION }}
5959
- name: Restore tools
@@ -64,7 +64,7 @@ jobs:
6464
run: dotnet fsi build.fsx -t Pack
6565
- name: Get Changelog Entry
6666
id: changelog_reader
67-
uses: mindsers/changelog-reader-action@v1.1.0
67+
uses: mindsers/changelog-reader-action@v1
6868
with:
6969
version: ${{ github.ref }}
7070
path: ./CHANGELOG.md
@@ -87,7 +87,7 @@ jobs:
8787
prerelease: false
8888
- name: Upload binaries to release (if tag)
8989
if: startsWith(github.ref, 'refs/tags/')
90-
uses: svenstaro/upload-release-action@v1-release
90+
uses: svenstaro/upload-release-action@v2
9191
with:
9292
repo_token: ${{ secrets.GITHUB_TOKEN }}
9393
file: out/*.nupkg
@@ -101,9 +101,9 @@ jobs:
101101
runs-on: ubuntu-latest
102102

103103
steps:
104-
- uses: actions/checkout@v2
104+
- uses: actions/checkout@v4
105105
- name: Setup .NET
106-
uses: actions/setup-dotnet@v3
106+
uses: actions/setup-dotnet@v4
107107
with:
108108
dotnet-version: ${{ env.DOTNET_VERSION }}
109109

0 commit comments

Comments
 (0)