Skip to content

Commit 9a37fca

Browse files
committed
Merge branch 'master' into potel-base
2 parents c8c205c + d894fc2 commit 9a37fca

14 files changed

+107
-97
lines changed

.github/workflows/test-integrations-ai.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
coverage xml
6969
- name: Upload coverage to Codecov
7070
if: ${{ !cancelled() }}
71-
uses: codecov/codecov-action@v4.6.0
71+
uses: codecov/codecov-action@v5.0.2
7272
with:
7373
token: ${{ secrets.CODECOV_TOKEN }}
7474
files: coverage.xml
@@ -130,7 +130,7 @@ jobs:
130130
coverage xml
131131
- name: Upload coverage to Codecov
132132
if: ${{ !cancelled() }}
133-
uses: codecov/codecov-action@v4.6.0
133+
uses: codecov/codecov-action@v5.0.2
134134
with:
135135
token: ${{ secrets.CODECOV_TOKEN }}
136136
files: coverage.xml

.github/workflows/test-integrations-aws-lambda.yml renamed to .github/workflows/test-integrations-aws.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test AWS Lambda
3+
name: Test AWS
44
on:
55
push:
66
branches:
@@ -52,8 +52,8 @@ jobs:
5252
- name: Check permissions on repo branch
5353
if: github.event_name == 'push'
5454
run: true
55-
test-aws_lambda-pinned:
56-
name: AWS Lambda (pinned)
55+
test-aws-pinned:
56+
name: AWS (pinned)
5757
timeout-minutes: 30
5858
runs-on: ${{ matrix.os }}
5959
strategy:
@@ -87,7 +87,7 @@ jobs:
8787
coverage xml
8888
- name: Upload coverage to Codecov
8989
if: ${{ !cancelled() }}
90-
uses: codecov/codecov-action@v4.6.0
90+
uses: codecov/codecov-action@v5.0.2
9191
with:
9292
token: ${{ secrets.CODECOV_TOKEN }}
9393
files: coverage.xml
@@ -102,13 +102,13 @@ jobs:
102102
files: .junitxml
103103
verbose: true
104104
check_required_tests:
105-
name: All pinned AWS Lambda tests passed
106-
needs: test-aws_lambda-pinned
105+
name: All pinned AWS tests passed
106+
needs: test-aws-pinned
107107
# Always run this, even if a dependent job failed
108108
if: always()
109109
runs-on: ubuntu-20.04
110110
steps:
111111
- name: Check for failures
112-
if: contains(needs.test-aws_lambda-pinned.result, 'failure') || contains(needs.test-aws_lambda-pinned.result, 'skipped')
112+
if: contains(needs.test-aws-pinned.result, 'failure') || contains(needs.test-aws-pinned.result, 'skipped')
113113
run: |
114114
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-cloud-computing.yml renamed to .github/workflows/test-integrations-cloud.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Cloud Computing
3+
name: Test Cloud
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-cloud_computing-latest:
24-
name: Cloud Computing (latest)
23+
test-cloud-latest:
24+
name: Cloud (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -64,7 +64,7 @@ jobs:
6464
coverage xml
6565
- name: Upload coverage to Codecov
6666
if: ${{ !cancelled() }}
67-
uses: codecov/codecov-action@v4.6.0
67+
uses: codecov/codecov-action@v5.0.2
6868
with:
6969
token: ${{ secrets.CODECOV_TOKEN }}
7070
files: coverage.xml
@@ -78,8 +78,8 @@ jobs:
7878
token: ${{ secrets.CODECOV_TOKEN }}
7979
files: .junitxml
8080
verbose: true
81-
test-cloud_computing-pinned:
82-
name: Cloud Computing (pinned)
81+
test-cloud-pinned:
82+
name: Cloud (pinned)
8383
timeout-minutes: 30
8484
runs-on: ${{ matrix.os }}
8585
strategy:
@@ -122,7 +122,7 @@ jobs:
122122
coverage xml
123123
- name: Upload coverage to Codecov
124124
if: ${{ !cancelled() }}
125-
uses: codecov/codecov-action@v4.6.0
125+
uses: codecov/codecov-action@v5.0.2
126126
with:
127127
token: ${{ secrets.CODECOV_TOKEN }}
128128
files: coverage.xml
@@ -137,13 +137,13 @@ jobs:
137137
files: .junitxml
138138
verbose: true
139139
check_required_tests:
140-
name: All pinned Cloud Computing tests passed
141-
needs: test-cloud_computing-pinned
140+
name: All pinned Cloud tests passed
141+
needs: test-cloud-pinned
142142
# Always run this, even if a dependent job failed
143143
if: always()
144144
runs-on: ubuntu-20.04
145145
steps:
146146
- name: Check for failures
147-
if: contains(needs.test-cloud_computing-pinned.result, 'failure') || contains(needs.test-cloud_computing-pinned.result, 'skipped')
147+
if: contains(needs.test-cloud-pinned.result, 'failure') || contains(needs.test-cloud-pinned.result, 'skipped')
148148
run: |
149149
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
coverage xml
5353
- name: Upload coverage to Codecov
5454
if: ${{ !cancelled() }}
55-
uses: codecov/codecov-action@v4.6.0
55+
uses: codecov/codecov-action@v5.0.2
5656
with:
5757
token: ${{ secrets.CODECOV_TOKEN }}
5858
files: coverage.xml

.github/workflows/test-integrations-databases.yml renamed to .github/workflows/test-integrations-dbs.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Databases
3+
name: Test DBs
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-databases-latest:
24-
name: Databases (latest)
23+
test-dbs-latest:
24+
name: DBs (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -91,7 +91,7 @@ jobs:
9191
coverage xml
9292
- name: Upload coverage to Codecov
9393
if: ${{ !cancelled() }}
94-
uses: codecov/codecov-action@v4.6.0
94+
uses: codecov/codecov-action@v5.0.2
9595
with:
9696
token: ${{ secrets.CODECOV_TOKEN }}
9797
files: coverage.xml
@@ -105,8 +105,8 @@ jobs:
105105
token: ${{ secrets.CODECOV_TOKEN }}
106106
files: .junitxml
107107
verbose: true
108-
test-databases-pinned:
109-
name: Databases (pinned)
108+
test-dbs-pinned:
109+
name: DBs (pinned)
110110
timeout-minutes: 30
111111
runs-on: ${{ matrix.os }}
112112
strategy:
@@ -176,7 +176,7 @@ jobs:
176176
coverage xml
177177
- name: Upload coverage to Codecov
178178
if: ${{ !cancelled() }}
179-
uses: codecov/codecov-action@v4.6.0
179+
uses: codecov/codecov-action@v5.0.2
180180
with:
181181
token: ${{ secrets.CODECOV_TOKEN }}
182182
files: coverage.xml
@@ -191,13 +191,13 @@ jobs:
191191
files: .junitxml
192192
verbose: true
193193
check_required_tests:
194-
name: All pinned Databases tests passed
195-
needs: test-databases-pinned
194+
name: All pinned DBs tests passed
195+
needs: test-dbs-pinned
196196
# Always run this, even if a dependent job failed
197197
if: always()
198198
runs-on: ubuntu-20.04
199199
steps:
200200
- name: Check for failures
201-
if: contains(needs.test-databases-pinned.result, 'failure') || contains(needs.test-databases-pinned.result, 'skipped')
201+
if: contains(needs.test-dbs-pinned.result, 'failure') || contains(needs.test-dbs-pinned.result, 'skipped')
202202
run: |
203203
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-graphql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
coverage xml
6565
- name: Upload coverage to Codecov
6666
if: ${{ !cancelled() }}
67-
uses: codecov/codecov-action@v4.6.0
67+
uses: codecov/codecov-action@v5.0.2
6868
with:
6969
token: ${{ secrets.CODECOV_TOKEN }}
7070
files: coverage.xml
@@ -122,7 +122,7 @@ jobs:
122122
coverage xml
123123
- name: Upload coverage to Codecov
124124
if: ${{ !cancelled() }}
125-
uses: codecov/codecov-action@v4.6.0
125+
uses: codecov/codecov-action@v5.0.2
126126
with:
127127
token: ${{ secrets.CODECOV_TOKEN }}
128128
files: coverage.xml

.github/workflows/test-integrations-miscellaneous.yml renamed to .github/workflows/test-integrations-misc.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Miscellaneous
3+
name: Test Misc
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-miscellaneous-latest:
24-
name: Miscellaneous (latest)
23+
test-misc-latest:
24+
name: Misc (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -76,7 +76,7 @@ jobs:
7676
coverage xml
7777
- name: Upload coverage to Codecov
7878
if: ${{ !cancelled() }}
79-
uses: codecov/codecov-action@v4.6.0
79+
uses: codecov/codecov-action@v5.0.2
8080
with:
8181
token: ${{ secrets.CODECOV_TOKEN }}
8282
files: coverage.xml
@@ -90,8 +90,8 @@ jobs:
9090
token: ${{ secrets.CODECOV_TOKEN }}
9191
files: .junitxml
9292
verbose: true
93-
test-miscellaneous-pinned:
94-
name: Miscellaneous (pinned)
93+
test-misc-pinned:
94+
name: Misc (pinned)
9595
timeout-minutes: 30
9696
runs-on: ${{ matrix.os }}
9797
strategy:
@@ -146,7 +146,7 @@ jobs:
146146
coverage xml
147147
- name: Upload coverage to Codecov
148148
if: ${{ !cancelled() }}
149-
uses: codecov/codecov-action@v4.6.0
149+
uses: codecov/codecov-action@v5.0.2
150150
with:
151151
token: ${{ secrets.CODECOV_TOKEN }}
152152
files: coverage.xml
@@ -161,13 +161,13 @@ jobs:
161161
files: .junitxml
162162
verbose: true
163163
check_required_tests:
164-
name: All pinned Miscellaneous tests passed
165-
needs: test-miscellaneous-pinned
164+
name: All pinned Misc tests passed
165+
needs: test-misc-pinned
166166
# Always run this, even if a dependent job failed
167167
if: always()
168168
runs-on: ubuntu-20.04
169169
steps:
170170
- name: Check for failures
171-
if: contains(needs.test-miscellaneous-pinned.result, 'failure') || contains(needs.test-miscellaneous-pinned.result, 'skipped')
171+
if: contains(needs.test-misc-pinned.result, 'failure') || contains(needs.test-misc-pinned.result, 'skipped')
172172
run: |
173173
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-networking.yml renamed to .github/workflows/test-integrations-network.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Networking
3+
name: Test Network
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-networking-latest:
24-
name: Networking (latest)
23+
test-network-latest:
24+
name: Network (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -64,7 +64,7 @@ jobs:
6464
coverage xml
6565
- name: Upload coverage to Codecov
6666
if: ${{ !cancelled() }}
67-
uses: codecov/codecov-action@v4.6.0
67+
uses: codecov/codecov-action@v5.0.2
6868
with:
6969
token: ${{ secrets.CODECOV_TOKEN }}
7070
files: coverage.xml
@@ -78,8 +78,8 @@ jobs:
7878
token: ${{ secrets.CODECOV_TOKEN }}
7979
files: .junitxml
8080
verbose: true
81-
test-networking-pinned:
82-
name: Networking (pinned)
81+
test-network-pinned:
82+
name: Network (pinned)
8383
timeout-minutes: 30
8484
runs-on: ${{ matrix.os }}
8585
strategy:
@@ -122,7 +122,7 @@ jobs:
122122
coverage xml
123123
- name: Upload coverage to Codecov
124124
if: ${{ !cancelled() }}
125-
uses: codecov/codecov-action@v4.6.0
125+
uses: codecov/codecov-action@v5.0.2
126126
with:
127127
token: ${{ secrets.CODECOV_TOKEN }}
128128
files: coverage.xml
@@ -137,13 +137,13 @@ jobs:
137137
files: .junitxml
138138
verbose: true
139139
check_required_tests:
140-
name: All pinned Networking tests passed
141-
needs: test-networking-pinned
140+
name: All pinned Network tests passed
141+
needs: test-network-pinned
142142
# Always run this, even if a dependent job failed
143143
if: always()
144144
runs-on: ubuntu-20.04
145145
steps:
146146
- name: Check for failures
147-
if: contains(needs.test-networking-pinned.result, 'failure') || contains(needs.test-networking-pinned.result, 'skipped')
147+
if: contains(needs.test-network-pinned.result, 'failure') || contains(needs.test-network-pinned.result, 'skipped')
148148
run: |
149149
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

0 commit comments

Comments
 (0)