Skip to content

Commit

Permalink
Update github-actions and build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ybykov-a9s committed May 25, 2022
1 parent 6f68d5e commit 9da83cd
Show file tree
Hide file tree
Showing 1,096 changed files with 189,448 additions and 125 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
token: ${{ github.token }}
- name: Tag
id: tag
uses: paketo-buildpacks/github-config/actions/tag/increment-tag@b935ce32a10f97eb94fdad03220dd19c5645a2f0
uses: paketo-buildpacks/github-config/actions/tag/increment-tag@main
with:
current_version: ${{ steps.reset.outputs.current_version }}
- name: Package
Expand Down
40 changes: 35 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,59 @@ go 1.18
require (
github.com/BurntSushi/toml v1.1.0
github.com/avarteqgmbh/rvm-cnb v0.1.15
github.com/onsi/gomega v1.18.1
github.com/paketo-buildpacks/occam v0.7.0
github.com/onsi/gomega v1.19.0
github.com/paketo-buildpacks/occam v0.9.0
github.com/paketo-buildpacks/packit v1.3.1
github.com/sclevine/spec v1.4.0
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/ForestEckhardt/freezer v0.0.10 // indirect
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/ForestEckhardt/freezer v0.0.11 // indirect
github.com/Masterminds/semver/v3 v3.1.1 // indirect
github.com/Microsoft/go-winio v0.5.1 // indirect
github.com/Microsoft/hcsshim v0.8.23 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/cenkalti/backoff/v4 v4.1.2 // indirect
github.com/cheggaaa/pb/v3 v3.0.8 // indirect
github.com/containerd/cgroups v1.0.1 // indirect
github.com/containerd/containerd v1.5.10 // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/docker v20.10.12+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/moby/sys/mount v0.2.0 // indirect
github.com/moby/sys/mountinfo v0.5.0 // indirect
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/paketo-buildpacks/packit/v2 v2.1.0 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.3-0.20220114050600-8b9d41f48198 // indirect
github.com/opencontainers/runc v1.0.2 // indirect
github.com/paketo-buildpacks/packit/v2 v2.3.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/testcontainers/testcontainers-go v0.13.0 // indirect
github.com/ulikunitz/xz v0.5.10 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/net v0.0.0-20220403103023-749bd193bc2b // indirect
golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c // indirect
google.golang.org/grpc v1.44.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
1,613 changes: 1,603 additions & 10 deletions go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions scripts/.util/tools.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"jam": "v0.12.1",
"pack": "v0.19.0"
"jam": "v1.3.0",
"pack": "v0.26.0"
}
27 changes: 1 addition & 26 deletions scripts/.util/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function util::tools::jam::install () {
version="$(jq -r .jam "$(dirname "${BASH_SOURCE[0]}")/tools.json")"

util::print::title "Installing jam ${version}"
curl "https://github.com/paketo-buildpacks/packit/releases/download/${version}/jam-${os}" \
curl "https://github.com/paketo-buildpacks/jam/releases/download/${version}/jam-${os}" \
--silent \
--location \
--output "${dir}/jam"
Expand Down Expand Up @@ -108,31 +108,6 @@ function util::tools::pack::install() {
fi
}

function util::tools::packager::install () {
local dir
while [[ "${#}" != 0 ]]; do
case "${1}" in
--directory)
dir="${2}"
shift 2
;;

*)
util::print::error "unknown argument \"${1}\""
;;

esac
done

mkdir -p "${dir}"
util::tools::path::export "${dir}"

if [[ ! -f "${dir}/packager" ]]; then
util::print::title "Installing packager"
GOBIN="${dir}" go get -u github.com/cloudfoundry/libcfbuildpack/packager
fi
}

function util::tools::tests::checkfocus() {
testout="${1}"
if grep -q 'Focused: [1-9]' "${testout}"; then
Expand Down
21 changes: 21 additions & 0 deletions vendor/github.com/Azure/go-ansiterm/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions vendor/github.com/Azure/go-ansiterm/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

188 changes: 188 additions & 0 deletions vendor/github.com/Azure/go-ansiterm/constants.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions vendor/github.com/Azure/go-ansiterm/context.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9da83cd

Please sign in to comment.