Skip to content

Commit 26ff1df

Browse files
committed
Updated actions, added dependabot
1 parent e5ff968 commit 26ff1df

File tree

4 files changed

+19
-12
lines changed

4 files changed

+19
-12
lines changed

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
4+
- package-ecosystem: nuget
5+
directory: "/"
6+
schedule:
7+
interval: weekly

.github/workflows/build-linux.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v1
10+
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
1313
- name: Setup .NET Core 6
14-
uses: actions/setup-dotnet@v1
14+
uses: actions/setup-dotnet@v4
1515
with:
1616
dotnet-version: 6.x
1717
- name: Setup .NET Core 8
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v4
1919
with:
2020
dotnet-version: 8.x
2121
- name: Build Reason
2222
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
2323
- name: Build Version
2424
shell: bash
2525
run: |
26-
dotnet tool install --global minver-cli --version 5.0.0
26+
dotnet tool install --global minver-cli --version 6.0.0
2727
version=$(minver --tag-prefix v)
2828
echo "MINVERVERSIONOVERRIDE=$version" >> $GITHUB_ENV
2929
- name: Build

.github/workflows/build-osx.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@ jobs:
77
runs-on: macOS-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v1
10+
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
1313
- name: Setup .NET Core 6
14-
uses: actions/setup-dotnet@v1
14+
uses: actions/setup-dotnet@v4
1515
with:
1616
dotnet-version: 6.x
1717
- name: Setup .NET Core 8
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v4
1919
with:
2020
dotnet-version: 8.x
2121
- name: Build Reason
2222
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
2323
- name: Build Version
2424
shell: bash
2525
run: |
26-
dotnet tool install --global minver-cli --version 5.0.0
26+
dotnet tool install --global minver-cli --version 6.0.0
2727
version=$(minver --tag-prefix v)
2828
echo "MINVERVERSIONOVERRIDE=$version" >> $GITHUB_ENV
2929
- name: Build

.github/workflows/build-windows.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@ jobs:
77
runs-on: windows-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v1
10+
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
1313
- name: Setup .NET Core 6
14-
uses: actions/setup-dotnet@v1
14+
uses: actions/setup-dotnet@v4
1515
with:
1616
dotnet-version: 6.x
1717
- name: Setup .NET Core 8
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v4
1919
with:
2020
dotnet-version: 8.x
2121
- name: Build Reason
2222
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
2323
- name: Build Version
2424
shell: bash
2525
run: |
26-
dotnet tool install --global minver-cli --version 5.0.0
26+
dotnet tool install --global minver-cli --version 6.0.0
2727
version=$(minver --tag-prefix v)
2828
echo "MINVERVERSIONOVERRIDE=$version" >> $GITHUB_ENV
2929
- name: Build

0 commit comments

Comments
 (0)