Skip to content

Commit 81d04ad

Browse files
committed
Update workflows
1 parent fc101d4 commit 81d04ad

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/apigee-release-pipeline.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ defaults:
33
run:
44
shell: bash # Explicitly sets pipeline to fail if any subprocess fails
55
on:
6-
push
6+
push:
7+
branches:
8+
- master
79
permissions: read-all
810

911
jobs:
@@ -89,10 +91,10 @@ jobs:
8991
token="${token#\"}"
9092
echo "APIGEE_ACCESS_TOKEN=$token" >> $GITHUB_ENV
9193
92-
- name: Install Python 3.9
94+
- name: Install Python 3.13
9395
uses: actions/setup-python@v5
9496
with:
95-
python-version: 3.9
97+
python-version: 3.13
9698

9799
- name: Upgrade python packaging tools
98100
run: python -m pip install --upgrade pip cryptography

.github/workflows/continous-integration-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
with:
1515
fetch-depth: 0 # This causes all history to be fetched, which is required for calculate-version to function
1616

17-
- name: Install Python 3.9
17+
- name: Install Python 3.13
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.9
20+
python-version: 3.13
2121

2222
- name: Update apt repositories
2323
run: sudo apt update

.github/workflows/spec-release-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
echo PR number - $pr_number
3939
fi
4040
41-
- name: Install Python 3.9
41+
- name: Install Python 3.13
4242
uses: actions/setup-python@v5
4343
with:
44-
python-version: 3.9
44+
python-version: 3.13
4545

4646
- name: Install Proxygen client
4747
run: |

0 commit comments

Comments
 (0)