From 11fe8acf3722ef0190bb5ac1efb70f32158ea489 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Sun, 23 Jul 2023 22:11:50 -0500 Subject: [PATCH] Update action deps, add dependabot config --- .github/dependabot.yml | 6 ++++++ .github/workflows/retrobar.yml | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..adee0ed1 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" \ No newline at end of file diff --git a/.github/workflows/retrobar.yml b/.github/workflows/retrobar.yml index 83c82a01..f5391280 100644 --- a/.github/workflows/retrobar.yml +++ b/.github/workflows/retrobar.yml @@ -18,12 +18,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Install nbgv - uses: dotnet/nbgv@v0.4.0 + uses: dotnet/nbgv@v0.4.1 - name: Publish app run: dotnet publish -p:PublishProfile=$env:Profile -f $env:Framework @@ -35,7 +35,7 @@ jobs: run: cp DistLicense.txt RetroBar\bin\Release\${{ matrix.publishprofile[1] }}\publish-${{ matrix.publishprofile[0] }}\License.txt - name: Upload build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: RetroBar ${{ matrix.publishprofile[0] == 'x86' && '32-bit' || matrix.publishprofile[0] == 'x64' && '64-bit' || 'ARM64' }} path: |