Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
janisar007 committed Aug 12, 2024
1 parent 201b879 commit 252f226
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
go-version: 'stable'
- name: Checkout
uses: actions/checkout@v3
- name: Run Unit Tests
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
go-version: 'stable'
- name: Checkout
uses: actions/checkout@v3
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
go-version: 'stable'
- name: Checkout
uses: actions/checkout@v3
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
go-version: 'stable'

- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
go-version: 'stable'

- name: Checkout
uses: actions/checkout@v3
Expand Down
13 changes: 6 additions & 7 deletions integration.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"builders": [
"index.docker.io/paketobuildpacks/builder:buildpackless-base",
"index.docker.io/paketobuildpacks/builder-jammy-buildpackless-base:latest"
"index.docker.io/paketobuildpacks/builder-jammy-full:latest"
],
"cpython":"github.com/initializ-buildpacks/cpython",
"pip":"github.com/initializ-buildpacks/pip",
"poetry":"github.com/initializ-buildpacks/poetry",
"poetry-install":"github.com/initializ-buildpacks/poetry-install",
"cpython":"github.com/paketo-buildpacks/cpython",
"pip":"github.com/paketo-buildpacks/pip",
"poetry":"github.com/paketo-buildpacks/poetry",
"poetry-install":"github.com/paketo-buildpacks/poetry-install",
"build-plan":"github.com/paketo-community/build-plan",
"watchexec":"github.com/paketo-buildpacks/watchexec"
"watchexec":"github.com/initializ-buildpacks/watchexec"
}
3 changes: 2 additions & 1 deletion integration/init_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ import (
"time"

"github.com/BurntSushi/toml"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/format"
"github.com/paketo-buildpacks/occam"
"github.com/paketo-buildpacks/occam/packagers"
"github.com/sclevine/spec"
"github.com/sclevine/spec/report"

. "github.com/onsi/gomega"
)

var buildpackInfo struct {
Expand Down
2 changes: 1 addition & 1 deletion scripts/.util/builders.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function util::builders::list() {

if [[ -z "${builders}" ]]; then
util::print::info "No builders specified. Falling back to default builder..."
builders="$(jq --compact-output --null-input '["index.docker.io/paketobuildpacks/builder-jammy-buildpackless-base:latest"]')"
builders="$(jq --compact-output --null-input '["index.docker.io/paketobuildpacks/builder-jammy-full:latest"]')"
fi

echo "${builders}"
Expand Down

0 comments on commit 252f226

Please sign in to comment.