Skip to content

Commit 688f18a

Browse files
committed
Update github actions to fix deprecation warnings
1 parent bdbc298 commit 688f18a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- name: Setup .Net
16-
uses: actions/setup-dotnet@v4
16+
uses: actions/setup-dotnet@v5
1717
with:
1818
global-json-file: "./global.json"
1919
- run: ./fake build --target CI

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v6
1414
- name: Setup .Net
15-
uses: actions/setup-dotnet@v3
15+
uses: actions/setup-dotnet@v5
1616
with:
1717
global-json-file: "./global.json"
1818
- run: ./fake build --target Release

0 commit comments

Comments
 (0)