Skip to content

Commit d42aa76

Browse files
committed
2 parents 6004a6c + 2a0cd84 commit d42aa76

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
2424
- name: Install .NET 6 SDK
25-
uses: actions/setup-dotnet@v1
25+
uses: actions/setup-dotnet@v3
2626
with:
2727
dotnet-version: '6.0.201'
2828

2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3030
- name: Checkout Repository
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v4
3232

3333
- name: dotnet build
3434
run: dotnet build /r

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
build-and-publish:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Setup .NET
16-
uses: actions/setup-dotnet@v2
16+
uses: actions/setup-dotnet@v3
1717
with:
1818
dotnet-version: 6.0.x
1919
- name: Restore dependencies

0 commit comments

Comments
 (0)