Skip to content

Commit

Permalink
Update setup-python GitHub Actions.md
Browse files Browse the repository at this point in the history
We need to update the following action because not doing so will result on an error on certain architectures, see error below.

`Run actions/setup-python@v1
  with:
    python-version: 3.8
    architecture: x64
Error: Version 3.8 with arch x64 not found
Available versions: `

Version 4 of this action fixed the issue for me
  • Loading branch information
luis-giraldo committed Jul 28, 2023
1 parent b62d3c4 commit a69efff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/4.Integrations/GitHub Actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
Expand Down

0 comments on commit a69efff

Please sign in to comment.