From 6f0e6bd1ad8dd7f24fdb78676d421e658fd74a3b Mon Sep 17 00:00:00 2001 From: "Brett V. Forsgren" Date: Thu, 13 Jun 2024 12:58:19 -0600 Subject: [PATCH] update github actions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e5b301..c86128f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,8 @@ jobs: os: [ubuntu-latest, windows-latest] configuration: [Debug, Release] steps: - - uses: actions/checkout@v1 - - uses: actions/setup-dotnet@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 - name: Build and test shell: pwsh run: | @@ -24,7 +24,7 @@ jobs: needs: [build] runs-on: windows-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-dotnet@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 - run: .\build-and-test.cmd -c Release -notest - run: dotnet nuget push .\artifacts\packages\Release\*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --no-symbols