Update GitHub Actions versions and add dependabot.

This commit is contained in:
Ian Walton 2023-03-10 22:08:37 -05:00
parent f5cb04b581
commit 6acaad6df4
2 changed files with 16 additions and 4 deletions

12
.github/dependabot.yml vendored Normal file
View File

@ -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"

View File

@ -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