Skip to content

Commit

Permalink
[Chore] update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorkstromm committed Sep 14, 2024
1 parent 1cbd2de commit 2438258
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4

- name: Restore
run: dotnet restore
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Push
run: dotnet nuget push "**/dotnet-depends.*.nupkg" -k ${{ secrets.NUGET_APIKEY }} -s https://api.nuget.org/v3/index.json

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: nuget
path: .artifacts
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4

- name: Restore
run: dotnet restore
Expand Down

0 comments on commit 2438258

Please sign in to comment.