Skip to content

Commit 818daf5

Browse files
committed
Bump action versions
1 parent 4ea1408 commit 818daf5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/actions/build-pyinstaller/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717

1818
# Steps represent a sequence of tasks that will be executed as part of the job
1919
steps:
20-
- uses: actions/setup-python@v4
20+
- uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ inputs.python-version }}
2323

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
conf: [ {os: 'windows-latest', pyver: '3.8'},{os: 'windows-latest', pyver: '3.11'}, {os: 'macos-latest', pyver: '3.10'}]
27+
conf: [ {os: 'windows-latest', pyver: '3.8'},{os: 'windows-latest', pyver: '3.12'}, {os: 'macos-latest', pyver: '3.11'}]
2828

2929
# Steps represent a sequence of tasks that will be executed as part of the job
3030
steps:
3131
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333

3434
- id: build
3535
uses: ./.github/actions/build-pyinstaller
3636
with:
3737
path: '${{ github.workspace }}'
3838
python-version: '${{ matrix.conf.pyver }}'
3939

40-
- uses: actions/upload-artifact@v3
40+
- uses: actions/upload-artifact@v4
4141
with:
4242
name: OpenFFBoard-Configurator-${{ matrix.conf.os }}-py${{ matrix.conf.pyver }}
4343
path: ${{ steps.build.outputs.distpath }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
steps:
2222
# Checkout
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424

2525
# Download artifacts for release
26-
- uses: actions/download-artifact@v4.1.7
26+
- uses: actions/download-artifact@v4
2727
with:
2828
path: etc/usr/artifacts/
2929

0 commit comments

Comments
 (0)