Skip to content

Commit

Permalink
Merge pull request #78 from hughesjs/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s-dependencies-a0efb54507

chore(deps): Bump the actions-dependencies group with 4 updates
  • Loading branch information
hughesjs authored Jan 16, 2024
2 parents f3eea08 + 54d5312 commit e36d7b2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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
14 changes: 7 additions & 7 deletions .github/workflows/dotnet-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e36d7b2

Please sign in to comment.