Skip to content

Commit 3494bee

Browse files
tdruezVarshaUN
authored andcommitted
Upgrade the scancode-action references to aboutcode-org
Signed-off-by: tdruez <tdruez@nexb.com>
1 parent dd80c83 commit 3494bee

File tree

6 files changed

+6
-19
lines changed

6 files changed

+6
-19
lines changed

.github/workflows/generate-sboms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
find scancodeio/ -type f -name "*.ABOUT" -exec cp {} "${{ env.INPUTS_PATH }}/about-files/" \;
3333
3434
- name: Resolve the dependencies using ScanCode-action
35-
uses: nexB/scancode-action@main
35+
uses: aboutcode-org/scancode-action@main
3636
with:
3737
pipelines: "resolve_dependencies:DynamicResolver"
3838
inputs-path: ${{ env.INPUTS_PATH }}

docs/automation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ automation methods such as a cron job or a git hook::
7979
Seamlessly integrate ScanCode.io into your GitHub Workflows to enable automated scans
8080
as an integral part of your development process.
8181

82-
Visit the `scancode-action repository <https://github.com/nexB/scancode-action>`_ to
83-
explore and learn more about the GitHub Action for ScanCode.io.
82+
Visit the `scancode-action repository <https://github.com/aboutcode-org/scancode-action>`_
83+
to explore and learn more about the GitHub Action for ScanCode.io.
8484
The repository provides detailed information, usage instructions,
8585
and configuration options to help you incorporate code scanning effortlessly into your
8686
workflows.

docs/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ How can I trigger a pipeline scan from a CI/CD, such as Jenkins, TeamCity or Azu
202202
You can refer to the :ref:`automation` to automate your projects management.
203203

204204
Also, A new GitHub action is available at
205-
`scancode-action repository <https://github.com/nexB/scancode-action>`_
205+
`scancode-action repository <https://github.com/aboutcode-org/scancode-action>`_
206206
to run ScanCode.io pipelines from your GitHub Workflows.
207207

208208
How can I get notified about my project progression?

scanpipe/models.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ class Project(UUIDPKModel, ExtraDataFieldMixin, UpdateMixin, models.Model):
585585
)
586586
notes = models.TextField(blank=True)
587587
settings = models.JSONField(default=dict, blank=True)
588-
<<<<<<< HEAD
588+
589589
labels = TaggableManager(through=UUIDTaggedItem, ordering=["name"])
590590
purl = models.CharField(
591591
max_length=2048,
@@ -598,11 +598,10 @@ class Project(UUIDPKModel, ExtraDataFieldMixin, UpdateMixin, models.Model):
598598
),
599599
)
600600

601-
=======
601+
602602
labels = TaggableManager(through=UUIDTaggedItem)
603603
use_local_storage = models.BooleanField(default=False,
604604
help_text="Store packages locally if enabled.")
605-
>>>>>>> 0cade5ed (add support to store packages/archives locally)
606605
objects = ProjectQuerySet.as_manager()
607606

608607
class Meta:

scanpipe/pipelines/deploy_to_develop.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@
2020
# ScanCode.io is a free software code scanning tool from nexB Inc. and others.
2121
# Visit https://github.com/aboutcode-org/scancode.io for support and download.
2222

23-
<<<<<<< HEAD
24-
=======
25-
import logging
26-
from pathlib import Path
27-
>>>>>>> c845a20f (Add required imports)
2823
from aboutcode.pipeline import optional_step
2924
from scanpipe import pipes
3025
from scanpipe.pipelines import Pipeline

scanpipe/pipelines/resolve_dependencies.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,7 @@
2020
# ScanCode.io is a free software code scanning tool from nexB Inc. and others.
2121
# Visit https://github.com/aboutcode-org/scancode.io for support and download.
2222

23-
<<<<<<< HEAD
2423
from aboutcode.pipeline import optional_step
25-
=======
26-
import logging
27-
from pathlib import Path
28-
from aboutcode.pipeline import optional_step
29-
from aboutcode.pipeline import group
30-
>>>>>>> c845a20f (Add required imports)
3124
from scanpipe.pipelines.scan_codebase import ScanCodebase
3225
from scanpipe.pipes import resolve
3326
from scanpipe.pipes import scancode

0 commit comments

Comments
 (0)