Skip to content

Commit 23173c5

Browse files
committed
pipeline updates
1 parent b30eb35 commit 23173c5

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
name: Testing
1414
strategy:
1515
matrix:
16-
dotnet: [ 'netcoreapp3.1', 'net6.0', 'net7.0', 'net462', 'net48' ]
16+
dotnet: [ 'net8.0', 'net9.0', 'net462', 'net48' ]
1717
steps:
1818
- name: Checkout code base
1919
uses: actions/checkout@v2
2020

2121
- uses: actions/setup-dotnet@v3
2222
with:
23-
dotnet-version: '7.0.x'
23+
dotnet-version: '9.0.x'
2424

2525
- name: Run tests
2626
run: dotnet test --verbosity normal -f ${{ matrix.dotnet }}
@@ -30,14 +30,14 @@ jobs:
3030
name: Building
3131
strategy:
3232
matrix:
33-
dotnet: [ 'netcoreapp3.1', 'net6.0', 'net7.0', 'net462', 'net48' ]
33+
dotnet: [ 'net8.0', 'net9.0', 'net462', 'net48' ]
3434
steps:
3535
- name: Checkout code base
3636
uses: actions/checkout@v2
3737

3838
- uses: actions/setup-dotnet@v3
3939
with:
40-
dotnet-version: '7.0.x'
40+
dotnet-version: '9.0.x'
4141

4242
- name: Cleaning
4343
run: dotnet clean
@@ -59,34 +59,34 @@ jobs:
5959
name: Generate docs and publish artifacts
6060
needs: ['build']
6161
steps:
62-
- name: Get cache - net6.0
62+
- name: Get cache - net8.0
6363
uses: actions/cache@v2
6464
with:
65-
path: build/net6.0
66-
key: ${{ runner.os }}-build-net6.0
65+
path: build/net8.0
66+
key: ${{ runner.os }}-build-net8.0
6767

68-
- name: Get cache - net7.0
68+
- name: Get cache - net9.0
6969
uses: actions/cache@v2
7070
with:
71-
path: build/net7.0
72-
key: ${{ runner.os }}-build-net7.0
71+
path: build/net9.0
72+
key: ${{ runner.os }}-build-net9.0
7373

7474
- uses: actions/setup-dotnet@v3
7575
with:
76-
dotnet-version: '7.0.x'
76+
dotnet-version: '9.0.x'
7777

7878
- name: Install Xml to Markdown tool
7979
run: dotnet new tool-manifest && dotnet tool install EAVFW.Extensions.Docs.TransformToMarkdown
8080

8181
- name: Generate docs
82-
run: dotnet tool run tomd --input build/net7.0/ExpressionEngine.xml --output Documentation.md
82+
run: dotnet tool run tomd --input build/net9.0/ExpressionEngine.xml --output Documentation.md
8383

8484
- name: Archive build to artifacts
8585
uses: actions/upload-artifact@v2.3.1
8686
with:
8787
name: Build
8888
path: |
89-
build/net6.0/
90-
build/net7.0/
89+
build/net8.0/
90+
build/net9.0/
9191
Documentation.md
9292
retention-days: 5

.github/workflows/todo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Create issues from todo"
1+
name: "Create issues from todo"
22

33
on:
44
push:
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout repo
1515
uses: actions/checkout@v2
1616
- name: "TODO to Issue"
17-
uses: "alstr/todo-to-issue-action@v2.4"
17+
uses: "alstr/todo-to-issue-action"
1818
id: "todo"
1919
with:
2020
TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)