Skip to content

Commit

Permalink
Bump pipeline from 1.36.6 to 1.38.0
Browse files Browse the repository at this point in the history
Bumps pipeline from 1.36.6 to 1.38.0.

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
paketo-bot authored and github-actions[bot] committed May 10, 2024
1 parent 4ecd98e commit 0cacb09
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 25 deletions.
26 changes: 9 additions & 17 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
version: 2
updates:
- package-ecosystem: gomod
directory: /
schedule:
interval: weekly
labels:
- semver:patch
- type:dependency-upgrade
allow:
- dependency-type: "all"
groups:
gomod:
patterns:
- "*"
# group all minor and patch dependency updates together
update-types:
- "minor"
- "patch"
- package-ecosystem: gomod
directory: /
schedule:
interval: daily
ignore:
- dependency-name: github.com/onsi/gomega
labels:
- semver:patch
- type:dependency-upgrade
2 changes: 1 addition & 1 deletion .github/pipeline-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.36.6
1.38.0
6 changes: 3 additions & 3 deletions .github/workflows/pb-create-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
run: |
#!/usr/bin/env bash
set -xeuo pipefail
set -euo pipefail
# With Go 1.20, we need to set this so that we produce statically compiled binaries
#
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
run: |-
#!/usr/bin/env bash
set -xeuo pipefail
set -euo pipefail
COMPILED_BUILDPACK="${HOME}/buildpack"
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
else
pack -v buildpack package \
"${PACKAGE}:${VERSION}" ${CONFIG} \
--format "${FORMAT}"
--format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish")
fi
env:
PACKAGES: docker.io/paketobuildpacks/pipeline-builder-canary gcr.io/paketo-buildpacks/pipeline-builder-canary
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pb-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
run: |
#!/usr/bin/env bash
set -xeuo pipefail
set -euo pipefail
# With Go 1.20, we need to set this so that we produce statically compiled binaries
#
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
run: |-
#!/usr/bin/env bash
set -xeuo pipefail
set -euo pipefail
COMPILED_BUILDPACK="${HOME}/buildpack"
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
else
pack -v buildpack package \
"${PACKAGE}:${VERSION}" ${CONFIG} \
--format "${FORMAT}"
--format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish")
fi
env:
FORMAT: image
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pb-update-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
go mod edit -go="$GO_VERSION"
go mod tidy
go get -u -t ./...
go mod tidy
git add go.mod go.sum
git checkout -- .
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euo pipefail

GOMOD=$(head -1 go.mod | awk '{print $2}')
GOOS="linux" go build -ldflags='-s -w' -o linux/amd64/bin/main "$GOMOD/cmd/main"
GOOS="linux" GOARCH="amd64" go build -ldflags='-s -w' -o linux/amd64/bin/main "$GOMOD/cmd/main"
GOOS="linux" GOARCH="arm64" go build -ldflags='-s -w' -o linux/arm64/bin/main "$GOMOD/cmd/main"

if [ "${STRIP:-false}" != "false" ]; then
Expand Down

0 comments on commit 0cacb09

Please sign in to comment.