diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 313db0b..d91ffd9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -56,7 +56,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -69,4 +69,4 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/dotnet-cd.yml b/.github/workflows/dotnet-cd.yml index 661cdaf..72fb0f8 100644 --- a/.github/workflows/dotnet-cd.yml +++ b/.github/workflows/dotnet-cd.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.0.x - name: Run tests @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/checkout@v4 # Need the full commit history for conventional commit - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.0.x - name: Bump version and push tag @@ -50,7 +50,7 @@ jobs: - name: Create Nuget Package run: dotnet build -c Release ./src/SpaceTrackSdk/SpaceTrackSdk.csproj && dotnet pack -c Release -p:PackageVersion=${{ steps.tag_version.outputs.new_version }} -o . ./src/SpaceTrackSdk/SpaceTrackSdk.csproj - name: Upload Package for Publishing - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: PackedLib path: ./*.nupkg @@ -62,11 +62,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Download built project - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: PackedLib - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.0.x - name: Push Package to GitHub @@ -79,11 +79,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Download built project - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: PackedLib - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.0.x - name: Push Package to Nuget diff --git a/.github/workflows/dotnet-ci.yml b/.github/workflows/dotnet-ci.yml index 4abe42c..a7721e8 100644 --- a/.github/workflows/dotnet-ci.yml +++ b/.github/workflows/dotnet-ci.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.0.x - name: Run tests