Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 0 # This causes all history to be fetched, which is required for calculate-version to function

- name: Install Python 3.9
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.9

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
if: ${{ inputs.environment == 'dev' && inputs.create_mns_subscription }}
run: pip install poetry==2.1.4

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
if: ${{ inputs.environment == 'dev' && inputs.create_mns_subscription }}
with:
python-version: 3.11
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-teardown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Install poetry
run: pip install poetry==2.1.4

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: 3.11
cache: 'poetry'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

# Base linting requires 3.8 due to APIM package dependencies. See root README for details under linting.
# Consider upgrading this and poetry deps if we move away from Azure DevOps to using the Proxygen tool.
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: 3.8
cache: 'poetry'
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Install poetry
run: pip install poetry==2.1.4

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: 3.11
cache: 'poetry'
Expand Down
Loading