Skip to content

Commit

Permalink
GitHub Actions Upgrades (#98)
Browse files Browse the repository at this point in the history
* Upgraded all GitHub actions task version numbers

* Patch version bump
  • Loading branch information
GaProgMan authored Oct 19, 2024
1 parent 70aa4c9 commit 1f3a692
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

Expand All @@ -36,12 +36,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

Expand All @@ -50,14 +50,14 @@ jobs:

- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test

- name: Test
run: dotnet test --no-restore --verbosity normal
- name: pack

- name: pack
run: dotnet pack src/OwaspHeaders.Core.csproj --configuration Release --no-build --no-restore

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ success() }}
with:
name: OwaspHeaders.Core
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

Expand All @@ -28,11 +28,11 @@ jobs:

- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test

- name: Test
run: dotnet test --no-restore --verbosity normal
- name: pack

- name: pack
run: dotnet pack src/OwaspHeaders.Core.csproj --configuration Release --no-build --no-restore

- name: Push NuGet package
Expand Down
2 changes: 1 addition & 1 deletion src/OwaspHeaders.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!-- NuGet metadata -->
<PackageId>OwaspHeaders.Core</PackageId>
<Version>8.1.2</Version>
<Version>8.1.3</Version>
<Authors>Jamie Taylor</Authors>
<Company>RJJ Software Ltd</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down

0 comments on commit 1f3a692

Please sign in to comment.