Skip to content

Commit

Permalink
Update workflow action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ultrawipf committed Oct 28, 2022
1 parent d04dd42 commit d46a3ad
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/actions/build-pyinstaller/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Build Configurator

inputs:
python-version:
description: 'Python version. 3.9 default'
default: '3.9'
description: 'Python version. 3.11 default'
default: '3.11'
path:
description: 'input path'
required: true
Expand All @@ -17,7 +17,7 @@ runs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- id: build
uses: ./.github/actions/build-pyinstaller
with:
path: '${{ github.workspace }}'
python-version: '${{ matrix.conf.pyver }}'

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: OpenFFBoard-Configurator-${{ matrix.conf.os }}-py${{ matrix.conf.pyver }}
path: ${{ steps.build.outputs.distpath }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
# Checkout
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Download artifacts for release
- uses: actions/download-artifact@v3
Expand Down

0 comments on commit d46a3ad

Please sign in to comment.