Skip to content

Commit a5bd296

Browse files
nerimartinezakodelia
authored andcommitted
Replacing '202x Ingram Micro inc.' for '2025 CloudBlue' in all files
1 parent 81bbdaf commit a5bd296

31 files changed

+33
-34
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
needs: [test]
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
with:
4242
fetch-depth: 0
4343
- name: Set up Python 3.10
@@ -52,10 +52,9 @@ jobs:
5252
- name: Generate coverage report
5353
run: |
5454
poetry run pytest
55-
- name: SonarCloud
56-
uses: SonarSource/sonarcloud-github-action@master
55+
- name: SonarCloud Scan
56+
uses: SonarSource/sonarqube-scan-action@v6
5757
env:
58-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5958
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
6059
- name: SonarQube Quality Gate check
6160
uses: sonarsource/sonarqube-quality-gate-action@master

connect/reports/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.

connect/reports/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.
22

33
# RUNTIME ENVIRONMENT VALUES
44

connect/reports/datamodels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.
22

33
import os
44
from dataclasses import asdict, dataclass, field

connect/reports/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.
22

33
from connect.reports.constants import DEFAULT_RENDERER_ID
44
from connect.reports.datamodels import (

connect/reports/renderers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.
22

33
from connect.reports.renderers.csv import CSVRenderer # noqa
44
from connect.reports.renderers.j2 import Jinja2Renderer # noqa

connect/reports/renderers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.
22

33
import asyncio
44
import contextlib

connect/reports/renderers/csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.
22

33
import csv
44
import inspect

connect/reports/renderers/j2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.
22

33
import os
44

connect/reports/renderers/json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright © 2022 CloudBlue. All rights reserved.
1+
# Copyright © 2025 CloudBlue. All rights reserved.
22

33
import inspect
44
import os

0 commit comments

Comments
 (0)