Skip to content

Commit 5ae55f1

Browse files
ci: Upgrade setup-python Github Action (feast-dev#3724)
* Switch from `macos-10.15` to `macos-latest` Signed-off-by: Felix Wang <wangfelix98@gmail.com> * ci: Upgrade `actions/setup-python@v2` to `actions/setup-python@v3` Signed-off-by: Felix Wang <wangfelix98@gmail.com> --------- Signed-off-by: Felix Wang <wangfelix98@gmail.com>
1 parent 3aca485 commit 5ae55f1

13 files changed

Lines changed: 19 additions & 19 deletions

.github/fork_workflows/fork_pr_integration_tests_aws.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
ref: refs/pull/${{ github.event.pull_request.number }}/merge
9292
submodules: recursive
9393
- name: Setup Python
94-
uses: actions/setup-python@v2
94+
uses: actions/setup-python@v3
9595
id: setup-python
9696
with:
9797
python-version: ${{ matrix.python-version }}

.github/fork_workflows/fork_pr_integration_tests_gcp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
ref: refs/pull/${{ github.event.pull_request.number }}/merge
3434
submodules: recursive
3535
- name: Setup Python
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v3
3737
id: setup-python
3838
with:
3939
python-version: ${{ matrix.python-version }}

.github/fork_workflows/fork_pr_integration_tests_snowflake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
ref: refs/pull/${{ github.event.pull_request.number }}/merge
3434
submodules: recursive
3535
- name: Setup Python
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v3
3737
id: setup-python
3838
with:
3939
python-version: ${{ matrix.python-version }}

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
steps:
5858
- uses: actions/checkout@v3
5959
- name: Setup Python
60-
uses: actions/setup-python@v2
60+
uses: actions/setup-python@v3
6161
with:
6262
python-version: "3.8"
6363
architecture: x64
@@ -84,7 +84,7 @@ jobs:
8484
- uses: actions/checkout@v3
8585
- name: Setup Python
8686
id: setup-python
87-
uses: actions/setup-python@v2
87+
uses: actions/setup-python@v3
8888
with:
8989
python-version: "3.10"
9090
architecture: x64
@@ -156,7 +156,7 @@ jobs:
156156
steps:
157157
- name: Setup Python
158158
id: setup-python
159-
uses: actions/setup-python@v2
159+
uses: actions/setup-python@v3
160160
with:
161161
python-version: ${{ matrix.python-version }}
162162
architecture: x64

.github/workflows/java_master_only.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
submodules: 'true'
2424
- name: Setup Python
25-
uses: actions/setup-python@v2
25+
uses: actions/setup-python@v3
2626
id: setup-python
2727
with:
2828
python-version: "3.8"
@@ -107,7 +107,7 @@ jobs:
107107
java-package: jdk
108108
architecture: x64
109109
- name: Setup Python (to call feast apply)
110-
uses: actions/setup-python@v2
110+
uses: actions/setup-python@v3
111111
id: setup-python
112112
with:
113113
python-version: 3.8

.github/workflows/java_pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
with:
7474
submodules: 'true'
7575
- name: Setup Python
76-
uses: actions/setup-python@v2
76+
uses: actions/setup-python@v3
7777
id: setup-python
7878
with:
7979
python-version: "3.8"
@@ -114,7 +114,7 @@ jobs:
114114
java-version: '11'
115115
java-package: jdk
116116
architecture: x64
117-
- uses: actions/setup-python@v2
117+
- uses: actions/setup-python@v3
118118
with:
119119
python-version: '3.8'
120120
architecture: 'x64'
@@ -143,7 +143,7 @@ jobs:
143143
- name: Use AWS CLI
144144
run: aws sts get-caller-identity
145145
- name: Setup Python (to call feast apply)
146-
uses: actions/setup-python@v2
146+
uses: actions/setup-python@v3
147147
id: setup-python
148148
with:
149149
python-version: 3.8

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- name: Setup Python
1313
id: setup-python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v3
1515
with:
1616
python-version: "3.8"
1717
architecture: x64

.github/workflows/master_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
- uses: actions/checkout@v3
8585
- name: Setup Python
8686
id: setup-python
87-
uses: actions/setup-python@v2
87+
uses: actions/setup-python@v3
8888
with:
8989
python-version: ${{ matrix.python-version }}
9090
architecture: x64

.github/workflows/nightly-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
ref: master
3535
- name: Setup Python
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v3
3737
id: setup-python
3838
with:
3939
python-version: "3.8"
@@ -145,7 +145,7 @@ jobs:
145145
ref: master
146146
submodules: recursive
147147
- name: Setup Python
148-
uses: actions/setup-python@v2
148+
uses: actions/setup-python@v3
149149
id: setup-python
150150
with:
151151
python-version: ${{ matrix.python-version }}

.github/workflows/pr_integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
ref: refs/pull/${{ github.event.pull_request.number }}/merge
111111
submodules: recursive
112112
- name: Setup Python
113-
uses: actions/setup-python@v2
113+
uses: actions/setup-python@v3
114114
id: setup-python
115115
with:
116116
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)