diff --git a/.github/workflows/build-nuget.yml b/.github/workflows/build-nuget.yml index 4ca08aa4..8df2983b 100644 --- a/.github/workflows/build-nuget.yml +++ b/.github/workflows/build-nuget.yml @@ -33,7 +33,7 @@ jobs: needs: [compile-sdl2cs, compile-natives] steps: - name: Clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare environment variables run: | @@ -46,31 +46,31 @@ jobs: fi - name: Download artifacts - SDL2-CS.dll - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: SDL2-CS path: ./bin - name: Download artifacts - native - Windows - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Natives-Windows path: ./native/win - name: Download artifacts - native - MacOS - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Natives-MacOS path: ./native/osx - name: Download artifacts - native - Linux (x64) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Natives-Linux(x64) path: ./native/linux - name: Download artifacts - native - Linux (arm64) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Natives-Linux(arm64) path: ./native/linux diff --git a/.github/workflows/build-sdl2cs.yml b/.github/workflows/build-sdl2cs.yml index 73330aab..3ef2936a 100644 --- a/.github/workflows/build-sdl2cs.yml +++ b/.github/workflows/build-sdl2cs.yml @@ -14,11 +14,11 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Since SDL2-CS.csproj targets netstandard2.0 we don't need .NET 6, but let's not risk having outdated support for older versions. - name: Install .NET 6 - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: '6.0.x'