Skip to content

Commit

Permalink
misc: Update GitHub Actions to use latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
IoeCmcomc committed Feb 14, 2025
1 parent f3c2c1b commit 16bf679
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nuitka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

steps:
- name: Check-out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.8' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: ${{ matrix.arch }} # optional x64 or x86. Defaults to x64 if not specified
Expand All @@ -49,13 +49,13 @@ jobs:
poetry run python3 -m nuitka nbstool.py
- name: Zip standalone folder
uses: vimtor/action-zip@v1
uses: vimtor/action-zip@v1.2
with:
files: nbstool.dist/
dest: NBSTool_${{ runner.os }}_${{ matrix.arch }}.zip

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }} ${{ matrix.arch }} Build
path: NBSTool_${{ runner.os }}_${{ matrix.arch }}.zip

0 comments on commit 16bf679

Please sign in to comment.