Skip to content

Commit 9ee5559

Browse files
authored
fix: fix links as part of transition to oracle/macaron (#307)
Signed-off-by: behnazh-w <[email protected]>
1 parent 9befc95 commit 9ee5559

File tree

23 files changed

+43
-43
lines changed

23 files changed

+43
-43
lines changed

.github/workflows/_build_docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
# Build the Docker image without pushing it.
5151
- name: Build the Docker image
5252
env:
53-
IMAGE_NAME: ghcr.io/oracle-samples/macaron
53+
IMAGE_NAME: ghcr.io/oracle/macaron
5454
run: make build-docker
5555

5656
# Run the integration tests against the built Docker image.

.github/workflows/build_base_image.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
run: docker login ghcr.io --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }}
2929

3030
# Build and push the base image using docker/Dockerfile.base. Note that this build
31-
# only requires docker/Dockerfile.base. The base image will be tagged with ghcr.io/oracle-samples/macaron-base:latest.
31+
# only requires docker/Dockerfile.base. The base image will be tagged with ghcr.io/oracle/macaron-base:latest.
3232
- name: Build and push the base image
3333
run: |
34-
docker build -t ghcr.io/oracle-samples/macaron-base:latest -f docker/Dockerfile.base docker/
35-
docker push ghcr.io/oracle-samples/macaron-base:latest
34+
docker build -t ghcr.io/oracle/macaron-base:latest -f docker/Dockerfile.base docker/
35+
docker push ghcr.io/oracle/macaron-base:latest

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
# commit. In an organisation that should be a dedicated devops account.
1919
USER_NAME: behnazh-w
2020
USER_EMAIL: [email protected]
21-
IMAGE_NAME: ghcr.io/oracle-samples/macaron
21+
IMAGE_NAME: ghcr.io/oracle/macaron
2222

2323
jobs:
2424
check:
@@ -204,7 +204,7 @@ jobs:
204204
tar -zxvf "$ASSET_NAME" -C "$SYFT_BIN" syft
205205
"$SYFT_BIN"/syft --version
206206
"$SYFT_BIN"/syft \
207-
ghcr.io/oracle-samples/macaron:"$RELEASE_TAG" \
207+
ghcr.io/oracle/macaron:"$RELEASE_TAG" \
208208
-o cyclonedx-json=dist/macaron-"$RELEASE_VERSION"-sbom-docker.json
209209
else
210210
echo "Checksum for '$ASSET_NAME' did not verify: expected $EXPECTED but got $SYFT_DIGEST"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-yellow?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![conventional-commits](https://img.shields.io/badge/conventional%20commits-1.0.0-yellow)](https://www.conventionalcommits.org/en/v1.0.0/) [![black](https://img.shields.io/badge/code%20style-black-000000)](https://github.com/psf/black) [![mypy](https://img.shields.io/badge/mypy-checked-brightgreen)](http://mypy-lang.org/) [![pylint](https://img.shields.io/badge/pylint-required%2010.0-brightgreen)](http://pylint.org/) [![pytest](https://img.shields.io/badge/pytest-enabled-brightgreen)](https://github.com/pytest-dev/pytest) [![hypothesis](https://img.shields.io/badge/hypothesis-tested-brightgreen.svg)](https://hypothesis.readthedocs.io/) [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/oracle-samples/macaron/badge)](https://github.com/ossf/scorecard)
1+
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-yellow?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![conventional-commits](https://img.shields.io/badge/conventional%20commits-1.0.0-yellow)](https://www.conventionalcommits.org/en/v1.0.0/) [![black](https://img.shields.io/badge/code%20style-black-000000)](https://github.com/psf/black) [![mypy](https://img.shields.io/badge/mypy-checked-brightgreen)](http://mypy-lang.org/) [![pylint](https://img.shields.io/badge/pylint-required%2010.0-brightgreen)](http://pylint.org/) [![pytest](https://img.shields.io/badge/pytest-enabled-brightgreen)](https://github.com/pytest-dev/pytest) [![hypothesis](https://img.shields.io/badge/hypothesis-tested-brightgreen.svg)](https://hypothesis.readthedocs.io/) [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/oracle/macaron/badge)](https://github.com/ossf/scorecard)
22

33
# Macaron
44

@@ -18,7 +18,7 @@ Macaron uses [SLSA requirements specifications v0.1](https://slsa.dev/spec/v0.1/
1818

1919
## Getting started
2020

21-
To learn how to download and run Macaron, see our documentation [here](https://oracle-samples.github.io/macaron/).
21+
To learn how to download and run Macaron, see our documentation [here](https://oracle.github.io/macaron/).
2222

2323
## Contributing
2424

docker/Dockerfile.final

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Copyright (c) 2022 - 2023, Oracle and/or its affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/.
33

4-
# This Dockerfile is for building the final production image. It's based on ghcr.io/oracle-samples/macaron-base.
4+
# This Dockerfile is for building the final production image. It's based on ghcr.io/oracle/macaron-base.
55
# For the build, two files will be copied into the image:
66
# - Macaron wheel file (its path must be provided to the build argument WHEEL_PATH)
77
# - user.sh for the entrypoint of the final image.
88
# For example, using Docker, we could build the image using:
9-
# docker build --build-arg WHEEL_PATH=<path_to_wheel> -t ghcr.io/oracle-samples/macaron -f docker/Dockerfile.final ./
10-
# Note that the local machine must login to ghcr.io so that Docker could pull the ghcr.io/oracle-samples/macaron-base
9+
# docker build --build-arg WHEEL_PATH=<path_to_wheel> -t ghcr.io/oracle/macaron -f docker/Dockerfile.final ./
10+
# Note that the local machine must login to ghcr.io so that Docker could pull the ghcr.io/oracle/macaron-base
1111
# image for this build.
1212

13-
FROM ghcr.io/oracle-samples/macaron-base:latest@sha256:5f2ed797b2b1e7e80d151fabc85e220a6bd57a9808c73aaa3cf466a038061a1d
13+
FROM ghcr.io/oracle/macaron-base:latest@sha256:5f2ed797b2b1e7e80d151fabc85e220a6bd57a9808c73aaa3cf466a038061a1d
1414

1515
ENV HOME="/home/macaron"
1616

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Macaron documentation
2-
This directory contains the source for the documentation of Macaron hosted [here](https://oracle-samples.github.io/macaron/).
2+
This directory contains the source for the documentation of Macaron hosted [here](https://oracle.github.io/macaron/).
33

44
## Build the documentation
55

docs/source/_static/examples/micronaut-projects/micronaut-core/analyze_with_repo_path/junit5.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@
369369
gradientUnits="userSpaceOnUse" gradientTransform="translate(-46.49643,34.270365)" x1="54.163754"
370370
y1="22.947735" x2="54.651581" y2="23.437124" />
371371
</defs>
372-
<a href="https://github.com/oracle-samples/macaron" target="_blank">
372+
<a href="https://github.com/oracle/macaron" target="_blank">
373373
<g id="layer1" style="display:inline">
374374
<path id="ellipse1174-3-8-6-0-1"
375375
style="fill:#000000;fill-opacity:0.32787;fill-rule:evenodd;stroke-width:2.18443"
@@ -978,7 +978,7 @@
978978
<div class="space_divider"></div>
979979
<p>This report was generated by Macaron, a product of Oracle Labs.
980980
</p>
981-
<p>Please visit our <a href='https://github.com/oracle-samples/macaron' target='_blank'>repository</a> to know more about Macaron.</p>
981+
<p>Please visit our <a href='https://github.com/oracle/macaron' target='_blank'>repository</a> to know more about Macaron.</p>
982982
<div class="space_divider"></div>
983983
<p>Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.</p>
984984
</footer>

docs/source/_static/examples/micronaut-projects/micronaut-core/analyze_with_repo_path/micronaut-core.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@
369369
gradientUnits="userSpaceOnUse" gradientTransform="translate(-46.49643,34.270365)" x1="54.163754"
370370
y1="22.947735" x2="54.651581" y2="23.437124" />
371371
</defs>
372-
<a href="https://github.com/oracle-samples/macaron" target="_blank">
372+
<a href="https://github.com/oracle/macaron" target="_blank">
373373
<g id="layer1" style="display:inline">
374374
<path id="ellipse1174-3-8-6-0-1"
375375
style="fill:#000000;fill-opacity:0.32787;fill-rule:evenodd;stroke-width:2.18443"
@@ -5515,7 +5515,7 @@
55155515
<div class="space_divider"></div>
55165516
<p>This report was generated by Macaron, a product of Oracle Labs.
55175517
</p>
5518-
<p>Please visit our <a href='https://github.com/oracle-samples/macaron' target='_blank'>repository</a> to know more about Macaron.</p>
5518+
<p>Please visit our <a href='https://github.com/oracle/macaron' target='_blank'>repository</a> to know more about Macaron.</p>
55195519
<div class="space_divider"></div>
55205520
<p>Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.</p>
55215521
</footer>

docs/source/_static/examples/micronaut-projects/micronaut-core/analyze_with_repo_path/micronaut-validation.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@
369369
gradientUnits="userSpaceOnUse" gradientTransform="translate(-46.49643,34.270365)" x1="54.163754"
370370
y1="22.947735" x2="54.651581" y2="23.437124" />
371371
</defs>
372-
<a href="https://github.com/oracle-samples/macaron" target="_blank">
372+
<a href="https://github.com/oracle/macaron" target="_blank">
373373
<g id="layer1" style="display:inline">
374374
<path id="ellipse1174-3-8-6-0-1"
375375
style="fill:#000000;fill-opacity:0.32787;fill-rule:evenodd;stroke-width:2.18443"
@@ -1819,7 +1819,7 @@
18191819
<div class="space_divider"></div>
18201820
<p>This report was generated by Macaron, a product of Oracle Labs.
18211821
</p>
1822-
<p>Please visit our <a href='https://github.com/oracle-samples/macaron' target='_blank'>repository</a> to know more about Macaron.</p>
1822+
<p>Please visit our <a href='https://github.com/oracle/macaron' target='_blank'>repository</a> to know more about Macaron.</p>
18231823
<div class="space_divider"></div>
18241824
<p>Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.</p>
18251825
</footer>

docs/source/_static/examples/micronaut-projects/micronaut-core/analyze_with_repo_path/reactive-streams.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@
369369
gradientUnits="userSpaceOnUse" gradientTransform="translate(-46.49643,34.270365)" x1="54.163754"
370370
y1="22.947735" x2="54.651581" y2="23.437124" />
371371
</defs>
372-
<a href="https://github.com/oracle-samples/macaron" target="_blank">
372+
<a href="https://github.com/oracle/macaron" target="_blank">
373373
<g id="layer1" style="display:inline">
374374
<path id="ellipse1174-3-8-6-0-1"
375375
style="fill:#000000;fill-opacity:0.32787;fill-rule:evenodd;stroke-width:2.18443"
@@ -978,7 +978,7 @@
978978
<div class="space_divider"></div>
979979
<p>This report was generated by Macaron, a product of Oracle Labs.
980980
</p>
981-
<p>Please visit our <a href='https://github.com/oracle-samples/macaron' target='_blank'>repository</a> to know more about Macaron.</p>
981+
<p>Please visit our <a href='https://github.com/oracle/macaron' target='_blank'>repository</a> to know more about Macaron.</p>
982982
<div class="space_divider"></div>
983983
<p>Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.</p>
984984
</footer>

0 commit comments

Comments
 (0)