From 8347a00cf175394cc8838f7f771be343f32a5292 Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Fri, 6 Oct 2023 09:06:28 -0400 Subject: [PATCH] Updated references to new 'main' branch Signed-off-by: Mike Raineri --- .github/workflows/release.yml | 2 +- RedfishServiceValidator.py | 2 +- RedfishServiceValidatorGui.py | 2 +- redfish_service_validator/RedfishLogo.py | 2 +- redfish_service_validator/RedfishServiceValidator.py | 2 +- redfish_service_validator/RedfishServiceValidatorGui.py | 2 +- redfish_service_validator/config.py | 2 +- redfish_service_validator/helper.py | 2 +- redfish_service_validator/metadata.py | 2 +- redfish_service_validator/schema_pack.py | 2 +- redfish_service_validator/tohtml.py | 2 +- redfish_service_validator/traverse.py | 2 +- redfish_service_validator/validateResource.py | 2 +- setup.py | 2 +- tests/test_catalog.py | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 92f46b1..0b2e616 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,7 +69,7 @@ jobs: git config user.email "<>" git add CHANGELOG.md setup.py redfish_service_validator/RedfishServiceValidator.py git commit -s -m "${{github.event.inputs.version}} versioning" - git push origin master + git push origin main - name: Make the release id: create_release uses: actions/create-release@v1 diff --git a/RedfishServiceValidator.py b/RedfishServiceValidator.py index 9659f25..6478d52 100755 --- a/RedfishServiceValidator.py +++ b/RedfishServiceValidator.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # Copyright 2022 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: -# https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md from redfish_service_validator.RedfishServiceValidator import main, my_logger import sys diff --git a/RedfishServiceValidatorGui.py b/RedfishServiceValidatorGui.py index dc3382a..b5f5093 100755 --- a/RedfishServiceValidatorGui.py +++ b/RedfishServiceValidatorGui.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # Copyright 2022 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: -# https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md from redfish_service_validator.RedfishServiceValidatorGui import main diff --git a/redfish_service_validator/RedfishLogo.py b/redfish_service_validator/RedfishLogo.py index 58b1edb..464beec 100644 --- a/redfish_service_validator/RedfishLogo.py +++ b/redfish_service_validator/RedfishLogo.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2018-2019 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md """ Redfish Logo diff --git a/redfish_service_validator/RedfishServiceValidator.py b/redfish_service_validator/RedfishServiceValidator.py index 6a8b208..b092714 100755 --- a/redfish_service_validator/RedfishServiceValidator.py +++ b/redfish_service_validator/RedfishServiceValidator.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2016-2021 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import os import sys diff --git a/redfish_service_validator/RedfishServiceValidatorGui.py b/redfish_service_validator/RedfishServiceValidatorGui.py index f4f0898..24d4fff 100755 --- a/redfish_service_validator/RedfishServiceValidatorGui.py +++ b/redfish_service_validator/RedfishServiceValidatorGui.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2016-2019 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md """ Redfish Service Validator GUI diff --git a/redfish_service_validator/config.py b/redfish_service_validator/config.py index 127265e..f7f53d5 100644 --- a/redfish_service_validator/config.py +++ b/redfish_service_validator/config.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2016-2021 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import configparser import logging diff --git a/redfish_service_validator/helper.py b/redfish_service_validator/helper.py index 67dbd18..37c4275 100644 --- a/redfish_service_validator/helper.py +++ b/redfish_service_validator/helper.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2016-2020 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import re import logging diff --git a/redfish_service_validator/metadata.py b/redfish_service_validator/metadata.py index 73b3955..7c4109e 100644 --- a/redfish_service_validator/metadata.py +++ b/redfish_service_validator/metadata.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2018-2020 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import os import time diff --git a/redfish_service_validator/schema_pack.py b/redfish_service_validator/schema_pack.py index 9e74913..d160016 100644 --- a/redfish_service_validator/schema_pack.py +++ b/redfish_service_validator/schema_pack.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2018-2021 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import argparse import os diff --git a/redfish_service_validator/tohtml.py b/redfish_service_validator/tohtml.py index 22eb4b7..cab1dff 100644 --- a/redfish_service_validator/tohtml.py +++ b/redfish_service_validator/tohtml.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2016-2019 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md if __name__ != '__main__': from redfish_service_validator.helper import getType diff --git a/redfish_service_validator/traverse.py b/redfish_service_validator/traverse.py index 321a4d5..fd65dab 100644 --- a/redfish_service_validator/traverse.py +++ b/redfish_service_validator/traverse.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2016-2020 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import json from datetime import datetime diff --git a/redfish_service_validator/validateResource.py b/redfish_service_validator/validateResource.py index 83a7736..b147a34 100644 --- a/redfish_service_validator/validateResource.py +++ b/redfish_service_validator/validateResource.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2016-2021 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md import logging from collections import Counter, OrderedDict diff --git a/setup.py b/setup.py index d4af42f..f5e7f4e 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # Copyright Notice: # Copyright 2022 DMTF. All rights reserved. # License: BSD 3-Clause License. For full text see link: -# https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md from setuptools import setup from codecs import open diff --git a/tests/test_catalog.py b/tests/test_catalog.py index dc13f27..e7b6a8f 100644 --- a/tests/test_catalog.py +++ b/tests/test_catalog.py @@ -1,6 +1,6 @@ # Copyright Notice: # Copyright 2017-2019 DMTF. All rights reserved. -# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md +# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md # # Unit tests for RedfishServiceValidator.py #