Skip to content

Commit

Permalink
fix: upgrading all github actions
Browse files Browse the repository at this point in the history
actions/upload-artifact@2 was deprecated but let's upgrade them all
  • Loading branch information
Holf committed Sep 30, 2024
1 parent 44603d3 commit ffb7bca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_executables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12" # Your Python version

Expand All @@ -45,7 +45,7 @@ jobs:
- name: Upload executable as artifact
if: success()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-executable
path: |
Expand Down

0 comments on commit ffb7bca

Please sign in to comment.