Skip to content

Commit

Permalink
Bumped workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Kir-Antipov committed Apr 20, 2024
1 parent eaa4ade commit 4fdedcb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup .NET SDK
uses: actions/setup-dotnet@main
uses: actions/setup-dotnet@v4

- name: Restore dependencies
run: dotnet restore -tl
Expand All @@ -42,7 +42,7 @@ jobs:
run: dotnet pack -tl -c Release --no-build -o "${{ env.BUILD_OUTPUT }}"

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build
if-no-files-found: error
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup .NET SDK
uses: actions/setup-dotnet@main
uses: actions/setup-dotnet@v4

- name: Restore dependencies
run: dotnet restore -tl
Expand Down

0 comments on commit 4fdedcb

Please sign in to comment.