Skip to content

Commit

Permalink
chore(IDX): upgrade python for dependency-scan jobs (#2072)
Browse files Browse the repository at this point in the history
Missed these jobs during the upgrade here:
#2041

---------

Co-authored-by: IDX GitHub Automation <IDX GitHub Automation>
  • Loading branch information
cgundy authored Oct 16, 2024
1 parent 0de811a commit be1fe48
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows-source/release-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows-source/schedule-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/schedule-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit be1fe48

Please sign in to comment.