Skip to content

Commit

Permalink
* removed dotnet 5 from ci scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
RagingKore committed Oct 31, 2023
1 parent 41f7f7e commit 816361f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 22 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
strategy:
fail-fast: false
matrix:
framework: [net5.0, net6.0, net7.0]
os: [ubuntu-latest]
test: [Streams, PersistentSubscriptions, Operations, UserManagement, ProjectionManagement]
configuration: [release]
framework: [ net6.0, net7.0 ]
os: [ ubuntu-latest ]
test: [ Streams, PersistentSubscriptions, Operations, UserManagement, ProjectionManagement ]
configuration: [ release ]
runs-on: ${{ matrix.os }}
name: EventStore.Client.${{ matrix.test }}/${{ matrix.os }}/${{ matrix.framework }}/${{ inputs.docker-tag }}
steps:
Expand All @@ -33,7 +33,6 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
7.0.x
- name: Compile
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: "Dispatch"

on:
workflow_dispatch:
inputs:
version:
description: "Docker tag version"
required: true
type: string
workflow_dispatch:
inputs:
version:
description: "Docker tag version"
required: true
type: string

jobs:
test:
uses: ./.github/workflows/base.yml
with:
docker-tag: ${{ inputs.version }}
test:
uses: ./.github/workflows/base.yml
with:
docker-tag: ${{ inputs.version }}
10 changes: 3 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
framework: [ net5.0, net6.0, net7.0 ]
framework: [ net6.0, net7.0 ]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
name: scan-vulnerabilities/${{ matrix.os }}/${{ matrix.framework }}
Expand All @@ -25,7 +25,6 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
7.0.x
- name: Scan for Vulnerabilities
Expand All @@ -43,7 +42,7 @@ jobs:
strategy:
fail-fast: false
matrix:
framework: [ net5.0, net6.0, net7.0 ]
framework: [ net6.0, net7.0 ]
services:
esdb:
image: ghcr.io/eventstore/eventstore:lts
Expand All @@ -62,7 +61,6 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
7.0.x
- name: Compile
Expand All @@ -79,7 +77,7 @@ jobs:
strategy:
fail-fast: false
matrix:
framework: [net5.0, net6.0, net7.0]
framework: [net6.0, net7.0]
os: [ubuntu-latest, windows-latest]
configuration: [release]
runs-on: ${{ matrix.os }}
Expand All @@ -94,7 +92,6 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
7.0.x
- name: Compile
Expand Down Expand Up @@ -132,7 +129,6 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
7.0.x
- name: Dotnet Pack
Expand Down

0 comments on commit 816361f

Please sign in to comment.