Skip to content

Commit 9ee21e7

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 f290364 commit 9ee21e7

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

.github/workflows/_bump-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- uses: actions/checkout@v4
6363
with:
6464
ref: ${{ inputs.branch }}
65-
- uses: actions/setup-python@v5
65+
- uses: actions/setup-python@v6
6666
with:
6767
python-version: ${{ vars.DEFAULT_PYTHON_VERSION }}
6868
- uses: pypa/hatch@install

.github/workflows/_code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
ref: ${{ inputs.branch }}
3636
repository: ${{ inputs.repository }}
37-
- uses: actions/setup-python@v5
37+
- uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ vars.DEFAULT_PYTHON_VERSION }}
4040
- uses: pre-commit/[email protected]

.github/workflows/_generate-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v4
5858
with:
5959
ref: ${{ inputs.branch }}
60-
- uses: actions/setup-python@v5
60+
- uses: actions/setup-python@v6
6161
with:
6262
python-version: ${{ vars.DEFAULT_PYTHON_VERSION }}
6363
- uses: pypa/hatch@install

.github/workflows/_integration-tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
with:
9595
ref: ${{ inputs.branch }}
9696
repository: ${{ inputs.repository }}
97-
- uses: actions/setup-python@v5
97+
- uses: actions/setup-python@v6
9898
with:
9999
python-version: ${{ inputs.python-version }}
100100
- run: echo "HATCH_PYTHON=${{ inputs.python-version }}" >> $GITHUB_ENV
@@ -130,7 +130,7 @@ jobs:
130130
with:
131131
ref: ${{ inputs.branch }}
132132
repository: ${{ inputs.repository }}
133-
- uses: actions/setup-python@v5
133+
- uses: actions/setup-python@v6
134134
with:
135135
python-version: ${{ inputs.python-version }}
136136
- run: echo "HATCH_PYTHON=${{ inputs.python-version }}" >> $GITHUB_ENV
@@ -169,7 +169,7 @@ jobs:
169169
with:
170170
ref: ${{ inputs.branch }}
171171
repository: ${{ inputs.repository }}
172-
- uses: actions/setup-python@v5
172+
- uses: actions/setup-python@v6
173173
with:
174174
python-version: ${{ inputs.python-version }}
175175
- run: echo "HATCH_PYTHON=${{ inputs.python-version }}" >> $GITHUB_ENV
@@ -208,7 +208,7 @@ jobs:
208208
with:
209209
ref: ${{ inputs.branch }}
210210
repository: ${{ inputs.repository }}
211-
- uses: actions/setup-python@v5
211+
- uses: actions/setup-python@v6
212212
with:
213213
python-version: ${{ inputs.python-version }}
214214
- run: |
@@ -235,7 +235,7 @@ jobs:
235235
working-directory: "./dbt-postgres"
236236
steps:
237237
- uses: actions/checkout@v4
238-
- uses: actions/setup-python@v5
238+
- uses: actions/setup-python@v6
239239
with:
240240
python-version: ${{ inputs.python-version }}
241241
- if: startsWith(inputs.os, 'macos')
@@ -295,7 +295,7 @@ jobs:
295295
with:
296296
ref: ${{ inputs.branch }}
297297
repository: ${{ inputs.repository }}
298-
- uses: actions/setup-python@v5
298+
- uses: actions/setup-python@v6
299299
with:
300300
python-version: ${{ inputs.python-version }}
301301
- run: echo "HATCH_PYTHON=${{ inputs.python-version }}" >> $GITHUB_ENV
@@ -347,7 +347,7 @@ jobs:
347347
with:
348348
ref: ${{ inputs.branch }}
349349
repository: ${{ inputs.repository }}
350-
- uses: actions/setup-python@v5
350+
- uses: actions/setup-python@v6
351351
with:
352352
python-version: ${{ inputs.python-version }}
353353
- run: echo "HATCH_PYTHON=${{ inputs.python-version }}" >> $GITHUB_ENV
@@ -383,7 +383,7 @@ jobs:
383383
with:
384384
ref: ${{ inputs.branch }}
385385
repository: ${{ inputs.repository }}
386-
- uses: actions/setup-python@v5
386+
- uses: actions/setup-python@v6
387387
with:
388388
python-version: ${{ inputs.python-version }}
389389
# TODO: update 3.10 to ${{ inputs.python-version }} once we update default python to >=3.10

.github/workflows/_publish-internal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- uses: actions/checkout@v4
5555
with:
5656
ref: ${{ inputs.branch }}
57-
- uses: actions/setup-python@v5
57+
- uses: actions/setup-python@v6
5858
with:
5959
python-version: ${{ vars.DEFAULT_PYTHON_VERSION }}
6060
- uses: pypa/hatch@install

.github/workflows/_publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@v4
6161
with:
6262
ref: ${{ inputs.branch }}
63-
- uses: actions/setup-python@v5
63+
- uses: actions/setup-python@v6
6464
with:
6565
python-version: ${{ vars.DEFAULT_PYTHON_VERSION }}
6666
- uses: pypa/hatch@install

.github/workflows/_unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
ref: ${{ inputs.branch }}
8181
repository: ${{ inputs.repository }}
82-
- uses: actions/setup-python@v5
82+
- uses: actions/setup-python@v6
8383
with:
8484
python-version: ${{ inputs.python-version }}
8585
- run: |

.github/workflows/_verify-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
ref: ${{ inputs.branch }}
7474
repository: ${{ inputs.repository }}
75-
- uses: actions/setup-python@v5
75+
- uses: actions/setup-python@v6
7676
with:
7777
python-version: ${{ inputs.python-version }}
7878
- run: |

.github/workflows/publish-oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
ref: ${{ needs.work-branch.outputs.name }}
152152

153153
# build and publish using whichever branch was checked out above
154-
- uses: actions/setup-python@v5
154+
- uses: actions/setup-python@v6
155155
with:
156156
python-version: ${{ vars.DEFAULT_PYTHON_VERSION }}
157157
- uses: pypa/hatch@install

0 commit comments

Comments
 (0)