From a69efff39a56979e936854d77a69c4237e4cb152 Mon Sep 17 00:00:00 2001 From: Luis Giraldo <60015362+luis-giraldo@users.noreply.github.com> Date: Fri, 28 Jul 2023 14:42:50 -0500 Subject: [PATCH] Update setup-python GitHub Actions.md 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 --- docs/4.Integrations/GitHub Actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/4.Integrations/GitHub Actions.md b/docs/4.Integrations/GitHub Actions.md index 6c053dd8bb2..a8f1596a897 100644 --- a/docs/4.Integrations/GitHub Actions.md +++ b/docs/4.Integrations/GitHub Actions.md @@ -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: