Skip to content

Commit

Permalink
Bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ultrawipf committed Nov 15, 2024
1 parent 4ea1408 commit 818daf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-pyinstaller/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ jobs:
strategy:
fail-fast: false
matrix:
conf: [ {os: 'windows-latest', pyver: '3.8'},{os: 'windows-latest', pyver: '3.11'}, {os: 'macos-latest', pyver: '3.10'}]
conf: [ {os: 'windows-latest', pyver: '3.8'},{os: 'windows-latest', pyver: '3.12'}, {os: 'macos-latest', pyver: '3.11'}]

# 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@v3
- uses: actions/checkout@v4

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

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

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

# Download artifacts for release
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
path: etc/usr/artifacts/

Expand Down

0 comments on commit 818daf5

Please sign in to comment.