Skip to content

Commit 12c964c

Browse files
nerimartinezakodelia
authored andcommitted
Replacing '202x Ingram Micro inc.' for '2025 CloudBlue' in all files
1 parent 7854558 commit 12c964c

File tree

24 files changed

+49
-50
lines changed

24 files changed

+49
-50
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build CloudBlue Connect EaaS Extension Runner
22

33
on:
44
push:
5-
branches:
5+
branches:
66
- '*'
77
tags:
88
- '*'
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
python-version: ["3.9", "3.10", "3.11", "3.12"]
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
- name: Set up Python ${{ matrix.python-version }}
@@ -57,10 +57,9 @@ jobs:
5757
- name: Fix coverage.xml for Sonar
5858
run: |
5959
sed -i 's/\/home\/runner\/work\/connect-extension-runner\/connect-extension-runner\//\/github\/workspace\//g' coverage.xml
60-
- name: SonarCloud
61-
uses: SonarSource/sonarcloud-github-action@master
60+
- name: SonarCloud Scan
61+
uses: SonarSource/sonarqube-scan-action@v6
6262
env:
63-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6463
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
6564
- name: SonarQube Quality Gate check
6665
uses: sonarsource/sonarqube-quality-gate-action@master

connect/eaas/runner/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
2+
# This file is part of the CloudBlue Connect EaaS Extension Runner.
33
#
4-
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
4+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
55
#

connect/eaas/runner/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
2+
# This file is part of the CloudBlue Connect EaaS Extension Runner.
33
#
4-
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
4+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
55
#
66
import logging
77
import platform

connect/eaas/runner/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
2+
# This file is part of the CloudBlue Connect EaaS Extension Runner.
33
#
4-
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
4+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
55
#
66

77
from connect.eaas.core.enums import (

connect/eaas/runner/exceptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
2+
# This file is part of the CloudBlue Connect EaaS Extension Runner.
33
#
4-
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
4+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
55
#
66
class EaaSError(Exception):
77
pass

connect/eaas/runner/handlers/anvil.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
2+
# This file is part of the CloudBlue Connect EaaS Extension Runner.
33
#
4-
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
4+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
55
#
66
import logging
77

connect/eaas/runner/handlers/transformations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
2+
# This file is part of the CloudBlue Connect EaaS Extension Runner.
33
#
4-
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
4+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
55
#
66
import inspect
77
import logging

connect/eaas/runner/handlers/web.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
2+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
33
#
44

55
import functools

connect/eaas/runner/helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
2+
# This file is part of the CloudBlue Connect EaaS Extension Runner.
33
#
4-
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
4+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
55
#
66
import logging
77
import os

connect/eaas/runner/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
2+
# This file is part of the CloudBlue Connect EaaS Extension Runner.
33
#
4-
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
4+
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
55
#
66
import argparse
77
import logging

0 commit comments

Comments
 (0)