From 9b96c7997bcc8b0a03ab087ec52e5b8c36aa0669 Mon Sep 17 00:00:00 2001 From: d10sfan <4337981+d10sfan@users.noreply.github.com> Date: Wed, 27 Dec 2023 10:37:18 -0600 Subject: [PATCH] Github Action Updates (#90) * Update Github Action to run on development & PRs * Update actions to newer versions, to avoid deprecation warnings --- .github/workflows/dotnet.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a73cc8bc..bd375477 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -2,9 +2,8 @@ name: .NET on: push: - branches: [ master ] + branches: [ master, development ] pull_request: - branches: [ master ] jobs: build: @@ -12,9 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: 5.0.x - name: Restore dependencies