Skip to content

Commit a272ff7

Browse files
authored
Merge pull request #2 from dozer75/fix-build-actions
Update build actions
2 parents c51f88e + 5c8039d commit a272ff7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/master-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout source
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
- name: Setup .NET 8.0.x
26-
uses: actions/setup-dotnet@v3
26+
uses: actions/setup-dotnet@v4
2727
with:
2828
dotnet-version: '8.0.x'
2929
- name: Restore solution

.github/workflows/master-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
VERSION=${{ github.event.release.tag_name }}
1616
echo "VERSION=${VERSION#v}" >> $GITHUB_ENV
1717
- name: Checkout source
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: Setup .NET 8.0.x
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: '8.0.x'
2323
- name: Restore solution

.github/workflows/master-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout source
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
- name: Setup .NET 8.0.x
23-
uses: actions/setup-dotnet@v3
23+
uses: actions/setup-dotnet@v4
2424
with:
2525
dotnet-version: '8.0.x'
2626
- name: Restore solution

0 commit comments

Comments
 (0)