Skip to content

Commit a9acf60

Browse files
committed
Merge remote-tracking branch 'origin/master' into Connect_to_rabbit_hosts_directly
Pull in update workflows to allow CI/CD jobs to finish in this PR
2 parents 959bc86 + 62c065e commit a9acf60

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/MonitoringTools.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: cd MonitoringTools && python3 -m pytest . --cov-report xml:coverage.xml --cov
4040

4141
- name: Upload coverage to Codecov
42-
uses: codecov/codecov-action@v3
42+
uses: codecov/codecov-action@v4
4343
with:
4444
token: ${{secrets.CODECOV_TOKEN}}
4545
files: ./MonitoringTools/coverage.xml

.github/workflows/cloud_chatops.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: cd cloud_chatops && python3 -m pytest . --cov-report xml:coverage.xml --cov
3535

3636
- name: Upload coverage to Codecov
37-
uses: codecov/codecov-action@v3
37+
uses: codecov/codecov-action@v4
3838
with:
3939
token: ${{secrets.CODECOV_TOKEN}}
4040
files: ./cloud_chatops/coverage.xml

.github/workflows/prometheus_query_to_csv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: cd prometheus_query_to_csv && python3 -m pytest . --cov-report xml:coverage.xml --cov
3737

3838
- name: Upload coverage to Codecov
39-
uses: codecov/codecov-action@v3
39+
uses: codecov/codecov-action@v4
4040
with:
4141
token: ${{secrets.CODECOV_TOKEN}}
4242
files: ./prometheus_query_to_csv/coverage.xml

.github/workflows/pynetbox.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: cd pynetbox_query && python3 -m pytest . --cov-report xml:coverage.xml --cov
4040

4141
- name: Upload coverage to Codecov
42-
uses: codecov/codecov-action@v3
42+
uses: codecov/codecov-action@v4
4343
with:
4444
token: ${{secrets.CODECOV_TOKEN}}
4545
files: ./pynetbox_query/coverage.xml

.github/workflows/rabbit_consumer.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ jobs:
4343
cd OpenStack-Rabbit-Consumer && python -m coverage xml
4444
4545
- name: Upload coverage to codecov
46-
uses: codecov/codecov-action@v3
46+
uses: codecov/codecov-action@v4
4747
with:
4848
files: OpenStack-Rabbit-Consumer/coverage.xml
4949
fail_ci_if_error: true
5050
flags: rabbit_consumer
51+
token: ${{ secrets.CODECOV_TOKEN }}
5152

5253
push_dev_image_harbor:
5354
runs-on: ubuntu-latest

.github/workflows/reverse_ssl_cert_chain.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: cd reverse_ssl_cert_chain && python3 -m pytest . --cov-report xml:coverage.xml --cov
4040

4141
- name: Upload coverage to Codecov
42-
uses: codecov/codecov-action@v3
42+
uses: codecov/codecov-action@v4
4343
with:
44-
token: ${{secrets.CODECOV_TOKEN}}
44+
token: ${{ secrets.CODECOV_TOKEN }}
4545
files: ./reverse_ssl_cert_chain/coverage.xml

0 commit comments

Comments
 (0)