From be1fe485efa07a896a09da4d0854d65e7ffdc933 Mon Sep 17 00:00:00 2001 From: Carly Gundy <47304080+cgundy@users.noreply.github.com> Date: Wed, 16 Oct 2024 10:34:29 +0200 Subject: [PATCH] chore(IDX): upgrade python for dependency-scan jobs (#2072) Missed these jobs during the upgrade here: https://github.com/dfinity/ic/pull/2041 --------- Co-authored-by: IDX GitHub Automation --- .github/workflows-source/release-testing.yml | 4 ++++ .github/workflows-source/schedule-daily.yml | 4 ++++ .github/workflows/release-testing.yml | 4 ++++ .github/workflows/schedule-daily.yml | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/.github/workflows-source/release-testing.yml b/.github/workflows-source/release-testing.yml index f7885c61b84..6a9770ad896 100644 --- a/.github/workflows-source/release-testing.yml +++ b/.github/workflows-source/release-testing.yml @@ -148,6 +148,10 @@ jobs: - <<: *checkout - <<: *before-script - <<: *docker-login + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" - name: Setup python deps id: setup-python-deps shell: bash diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index 5cc9a4e9ba3..a67c1bcde24 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -194,6 +194,10 @@ jobs: steps: - <<: *checkout - <<: *before-script + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" - name: Setup environment deps id: setup-environment-deps shell: bash diff --git a/.github/workflows/release-testing.yml b/.github/workflows/release-testing.yml index cdf7598778c..e88531c9450 100644 --- a/.github/workflows/release-testing.yml +++ b/.github/workflows/release-testing.yml @@ -203,6 +203,10 @@ jobs: env: DOCKER_HUB_USER: ${{ vars.DOCKER_HUB_USER }} DOCKER_HUB_PASSWORD_RO: ${{ secrets.DOCKER_HUB_PASSWORD_RO }} + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" - name: Setup python deps id: setup-python-deps shell: bash diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index f7d3ca50d25..93ab519ed07 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -236,6 +236,10 @@ jobs: shell: bash run: | [ -n "${NODE_NAME:-}" ] && echo "Node: $NODE_NAME" + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" - name: Setup environment deps id: setup-environment-deps shell: bash