From ed15c2623ef49af66ac81bd65afef9f01e6adeb4 Mon Sep 17 00:00:00 2001 From: Collin Barrett <6483057+collinbarrett@users.noreply.github.com> Date: Sun, 8 Jun 2025 13:30:08 -0500 Subject: [PATCH] refactor(depbot): gh actions and dotnet-sdk --- .github/dependabot.yml | 8 ++++++++ .github/workflows/directory.yml | 2 -- global.json | 6 ++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 global.json diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 72e9453ce..1aa554b8e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,5 +1,13 @@ version: 2 updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "dotnet-sdk" + directory: "/" + schedule: + interval: "daily" - package-ecosystem: nuget directory: services schedule: diff --git a/.github/workflows/directory.yml b/.github/workflows/directory.yml index 7c38b635e..d64e0b0ad 100644 --- a/.github/workflows/directory.yml +++ b/.github/workflows/directory.yml @@ -41,8 +41,6 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 - with: - dotnet-version: "9.0.x" - name: Build run: dotnet build -c Release diff --git a/global.json b/global.json new file mode 100644 index 000000000..612b69b9b --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "rollForward": "latestPatch", + "version": "9.0.300" + } +} \ No newline at end of file