Skip to content

Commit f4721ce

Browse files
Bump actions/setup-python from 4.6.0 to 5.4.0
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.6.0 to 5.4.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@57ded4d...4237552) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d6829b6 commit f4721ce

9 files changed

+23
-23
lines changed

.github/workflows/ci-docs-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
3939

4040
- name: Set up Python ${{ env.DEFAULT_PYTHON_VERSION }} 🐍
41-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
41+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
4242
with:
4343
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
4444

@@ -109,7 +109,7 @@ jobs:
109109
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
110110

111111
- name: Set up Python ${{ env.DEFAULT_PYTHON_VERSION }} 🐍
112-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
112+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
113113
with:
114114
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
115115

.github/workflows/ci-github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
sudo chmod +x /usr/local/bin/gomplate
3030
3131
- name: Set up Python ${{ env.DEFAULT_PYTHON_VERSION }} 🐍
32-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
32+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
3333
with:
3434
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
3535

.github/workflows/ci-model-regression-on-schedule.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Setup Python
6363
id: python
64-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
64+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
6565
with:
6666
python-version: '3.8'
6767

@@ -279,7 +279,7 @@ jobs:
279279
.github/scripts/start_dd_agent.sh "${{ secrets.DD_API_KEY }}" "${{ env.ACCELERATOR_TYPE }}" ${{ env.NVML_INTERVAL_IN_SEC }}
280280
281281
- name: Set up Python 3.10 🐍
282-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
282+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
283283
if: steps.set_dataset_config_vars.outputs.is_dataset_exists == 'true' && steps.set_dataset_config_vars.outputs.is_config_exists == 'true'
284284
with:
285285
python-version: '3.10'
@@ -512,7 +512,7 @@ jobs:
512512
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
513513

514514
- name: Set up Python 3.10 🐍
515-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
515+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
516516
with:
517517
python-version: '3.10'
518518

@@ -697,7 +697,7 @@ jobs:
697697

698698
- name: Setup Python
699699
id: python
700-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
700+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
701701
with:
702702
python-version: '3.8'
703703

.github/workflows/ci-model-regression.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ jobs:
367367
.github/scripts/start_dd_agent.sh "${{ secrets.DD_API_KEY }}" "${{ env.ACCELERATOR_TYPE }}" ${{ env.NVML_INTERVAL_IN_SEC }}
368368
369369
- name: Set up Python 3.10 🐍
370-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
370+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
371371
if: steps.set_dataset_config_vars.outputs.is_dataset_exists == 'true' && steps.set_dataset_config_vars.outputs.is_config_exists == 'true'
372372
with:
373373
python-version: '3.10'
@@ -612,7 +612,7 @@ jobs:
612612
.github/scripts/start_dd_agent.sh "${{ secrets.DD_API_KEY }}" "${{ env.ACCELERATOR_TYPE }}" ${{ env.NVML_INTERVAL_IN_SEC }}
613613
614614
- name: Set up Python 3.10 🐍
615-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
615+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
616616
if: steps.set_dataset_config_vars.outputs.is_dataset_exists == 'true' && steps.set_dataset_config_vars.outputs.is_config_exists == 'true'
617617
with:
618618
python-version: '3.10'
@@ -760,7 +760,7 @@ jobs:
760760
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
761761

762762
- name: Set up Python 3.10 🐍
763-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
763+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
764764
with:
765765
python-version: '3.10'
766766

.github/workflows/continous-integration.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120

121121
- name: Set up Python ${{ env.DEFAULT_PYTHON_VERSION }} 🐍
122122
if: needs.changes.outputs.backend == 'true'
123-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
123+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
124124
with:
125125
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
126126

@@ -264,7 +264,7 @@ jobs:
264264

265265
- name: Set up Python ${{ matrix.python-version }} 🐍
266266
if: needs.changes.outputs.backend == 'true'
267-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
267+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
268268
with:
269269
python-version: ${{ matrix.python-version }}
270270

@@ -433,7 +433,7 @@ jobs:
433433

434434
- name: Set up Python ${{ matrix.python-version }} 🐍
435435
if: needs.changes.outputs.backend == 'true'
436-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
436+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
437437
with:
438438
python-version: ${{ matrix.python-version }}
439439

@@ -581,7 +581,7 @@ jobs:
581581
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
582582

583583
- name: Set up Python 3.10 🐍
584-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
584+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
585585
with:
586586
python-version: "3.10"
587587

@@ -677,7 +677,7 @@ jobs:
677677

678678
- name: Set up Python ${{ env.DEFAULT_PYTHON_VERSION }} 🐍
679679
if: needs.changes.outputs.backend == 'true'
680-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
680+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
681681
with:
682682
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
683683

@@ -767,7 +767,7 @@ jobs:
767767

768768
- name: Set up Python ${{ env.DEFAULT_PYTHON_VERSION }} 🐍
769769
if: needs.changes.outputs.backend == 'true'
770-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
770+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
771771
with:
772772
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
773773

@@ -878,7 +878,7 @@ jobs:
878878

879879
- name: Set up Python ${{ env.DEFAULT_PYTHON_VERSION }} 🐍
880880
if: needs.changes.outputs.backend == 'true'
881-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
881+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
882882
with:
883883
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
884884

@@ -1242,7 +1242,7 @@ jobs:
12421242
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
12431243

12441244
- name: Set up Python 3.9 🐍
1245-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
1245+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
12461246
with:
12471247
python-version: 3.9
12481248

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
111111

112112
- name: Set up Python 3.10 🐍
113-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
113+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
114114
with:
115115
python-version: '3.10'
116116

@@ -201,7 +201,7 @@ jobs:
201201

202202
- name: Set up Python 3.10 🐍
203203
if: needs.changes.outputs.docs == 'true'
204-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
204+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
205205
with:
206206
python-version: '3.10'
207207

.github/workflows/nightly_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
6363

6464
- name: Set up Python 3.9 🐍
65-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
65+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
6666
with:
6767
python-version: 3.9
6868

.github/workflows/rasa-install-cron-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
24+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Try to install Rasa.

.github/workflows/security-scans.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585

8686
- name: Set up Python 3.10 🐍
8787
if: needs.changes.outputs.backend == 'true'
88-
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
88+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
8989
with:
9090
python-version: '3.10'
9191

0 commit comments

Comments
 (0)