Skip to content

Commit aaea349

Browse files
Bump actions/setup-python from 5 to 6
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent e33b4be commit aaea349

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/base-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
echo "$HOME/.local/bin" >> $GITHUB_PATH
102102
103103
- name: "Set up Python"
104-
uses: actions/setup-python@v5
104+
uses: actions/setup-python@v6
105105
with:
106106
python-version: "3.13"
107107
cache: 'poetry'

.github/workflows/cicd-2-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
terraform_version: ${{ needs.metadata.outputs.terraform_version }}
6767

6868
- name: "Set up Python"
69-
uses: actions/setup-python@v5
69+
uses: actions/setup-python@v6
7070
with:
7171
python-version: '3.13'
7272

.github/workflows/cicd-3-test-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
terraform_version: ${{ needs.metadata.outputs.terraform_version }}
6969

7070
- name: "Set up Python"
71-
uses: actions/setup-python@v5
71+
uses: actions/setup-python@v6
7272
with:
7373
python-version: "3.13"
7474

.github/workflows/sonarcube-scan-main-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: "Checkout code"
2222
uses: actions/checkout@v5
2323
- name: "Set up Python"
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: '3.13'
2727
- name: "Run unit test suite"

.github/workflows/stage-2-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: "Checkout code"
4242
uses: actions/checkout@v5
4343
- name: "Set up Python"
44-
uses: actions/setup-python@v5
44+
uses: actions/setup-python@v6
4545
with:
4646
python-version: '3.13'
4747
- name: "Run unit test suite"
@@ -60,7 +60,7 @@ jobs:
6060
- name: "Checkout code"
6161
uses: actions/checkout@v5
6262
- name: "Set up Python"
63-
uses: actions/setup-python@v5
63+
uses: actions/setup-python@v6
6464
with:
6565
python-version: '3.13'
6666
- name: "Run linting"

.github/workflows/stage-3-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
timeout-minutes: 3
4040
steps:
4141
- name: "Set up Python"
42-
uses: actions/setup-python@v5
42+
uses: actions/setup-python@v6
4343
with:
4444
python-version: '3.13'
4545
- name: "Checkout code"

.github/workflows/stage-4-acceptance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
- name: "Checkout code"
117117
uses: actions/checkout@v5
118118
- name: "Set up Python"
119-
uses: actions/setup-python@v5
119+
uses: actions/setup-python@v6
120120
with:
121121
python-version: '3.13'
122122
- name: "Get lambda artefact"

0 commit comments

Comments
 (0)