From 6acaad6df49a7fc1d3761e9185de62b698a1fe9e Mon Sep 17 00:00:00 2001 From: Ian Walton Date: Fri, 10 Mar 2023 22:08:37 -0500 Subject: [PATCH] Update GitHub Actions versions and add dependabot. --- .github/dependabot.yml | 12 ++++++++++++ .github/workflows/main.yml | 8 ++++---- 2 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d242b74 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates#package-ecosystem + +version: 2 +updates: + + # Enable updates for Github Actions + - package-ecosystem: "github-actions" + target-branch: "master" + directory: "/" + schedule: + # Check for updates to GitHub Actions every month + interval: "monthly" \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 970054d..89ac7a9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: build-win64: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Python 3.9 uses: actions/setup-python@v1 with: @@ -37,14 +37,14 @@ jobs: ./artifacts.sh standard shell: bash - name: Archive production artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: windows path: ${{ github.workspace }}/publish/Installer/*.exe build-win32: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Python 3.9 uses: actions/setup-python@v1 with: @@ -73,7 +73,7 @@ jobs: ./artifacts.sh legacy shell: bash - name: Archive production artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: windows-legacy32 path: ${{ github.workspace }}/publish/InstallerLegacy/*.exe