Skip to content

Commit 71ae262

Browse files
authored
changing gcr refs to pointing to docker.io (#3)
1 parent 04882bd commit 71ae262

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/push-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
registries_filepath="${{ env.REGISTRIES_FILEPATH }}"
9595
9696
push_to_dockerhub=true
97-
push_to_gcr=true
97+
push_to_gcr=false
9898
9999
if [[ -f $registries_filepath ]]; then
100100

.github/workflows/test-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-22.04
3636
steps:
3737
- name: Upload Artifact
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: event-payload
4141
path: ${{ github.event_path }}

buildpack_integration_base_stack_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ func testBuildpackIntegrationBaseStack(t *testing.T, context spec.G, it spec.S)
5151
name, err = occam.RandomName()
5252
Expect(err).NotTo(HaveOccurred())
5353

54-
mavenBuildpack = "gcr.io/paketo-buildpacks/maven"
55-
jvmBuildpack = "gcr.io/paketo-buildpacks/sap-machine"
56-
syftBuildpack = "gcr.io/paketo-buildpacks/syft"
57-
executableJarBuildpack = "gcr.io/paketo-buildpacks/executable-jar"
54+
mavenBuildpack = "docker.io/paketobuildpacks/maven"
55+
jvmBuildpack = "docker.io/paketobuildpacks/sap-machine"
56+
syftBuildpack = "docker.io/paketobuildpacks/syft"
57+
executableJarBuildpack = "docker.io/paketobuildpacks/executable-jar"
5858

5959
source, err = occam.Source(filepath.Join("integration", "testdata", "java_simple_app"))
6060
Expect(err).NotTo(HaveOccurred())

buildpack_integration_tiny_stack_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func testBuildpackIntegrationTinyStack(t *testing.T, context spec.G, it spec.S)
4545
Expect(err).NotTo(HaveOccurred())
4646

4747
buildPlanBuildpack = "index.docker.io/paketocommunity/build-plan"
48-
goDistBuildpack = "gcr.io/paketo-buildpacks/go-dist"
48+
goDistBuildpack = "docker.io/paketobuildpacks/go-dist"
4949

5050
source, err = occam.Source(filepath.Join("integration", "testdata", "go_simple_app"))
5151
Expect(err).NotTo(HaveOccurred())

scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787
fi
8888

8989
if ((${#run_ref[@]} == 0)); then
90-
util::print::error "--run-ref is required [Example: gcr.iopaketo-buildpacks/foo:1.0.0]"
90+
util::print::error "--run-ref is required [Example: docker.io/paketobuildpacks/foo:1.0.0]"
9191
fi
9292

9393
if ((${#run_ref[@]} != ${#build_ref[@]})); then

0 commit comments

Comments
 (0)