Skip to content

Commit e003239

Browse files
authored
Fix workflows (#36)
1 parent 8b14bda commit e003239

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Setup dotnet
15-
uses: actions/setup-dotnet@v3
15+
uses: actions/setup-dotnet@v4
1616
with:
17-
dotnet-version: '8.x'
17+
dotnet-version: '9.x'
1818

1919
- name: Check formatting
2020
working-directory: ./src

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- id: tag
2020
name: Determine tag
@@ -32,9 +32,9 @@ jobs:
3232
3333
- if: ${{ fromJSON(steps.tag.outputs.create) }}
3434
name: Setup dotnet
35-
uses: actions/setup-dotnet@v3
35+
uses: actions/setup-dotnet@v4
3636
with:
37-
dotnet-version: '8.x'
37+
dotnet-version: '9.x'
3838

3939
- if: ${{ fromJSON(steps.tag.outputs.create) }}
4040
name: Pack

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Install nats-server
2525
shell: bash

0 commit comments

Comments
 (0)