From 5d0167d0dd53a57a6a7bfad3ccbb3a423abf7860 Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Tue, 30 Apr 2024 05:01:36 +0000 Subject: [PATCH] Bump pipeline from 1.36.6 to 1.37.5 Bumps pipeline from 1.36.6 to 1.37.5. Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/dependabot.yml | 26 +++++++++---------------- .github/pipeline-version | 2 +- .github/workflows/pb-create-package.yml | 4 ++-- .github/workflows/pb-tests.yml | 4 ++-- .github/workflows/pb-update-go.yml | 2 ++ 5 files changed, 16 insertions(+), 22 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index add7f27..2adccd4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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 diff --git a/.github/pipeline-version b/.github/pipeline-version index f5b8b23..e2ba070 100644 --- a/.github/pipeline-version +++ b/.github/pipeline-version @@ -1 +1 @@ -1.36.6 +1.37.5 diff --git a/.github/workflows/pb-create-package.yml b/.github/workflows/pb-create-package.yml index d425511..6a21bee 100644 --- a/.github/workflows/pb-create-package.yml +++ b/.github/workflows/pb-create-package.yml @@ -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 # @@ -144,7 +144,7 @@ jobs: run: |- #!/usr/bin/env bash - set -xeuo pipefail + set -euo pipefail COMPILED_BUILDPACK="${HOME}/buildpack" diff --git a/.github/workflows/pb-tests.yml b/.github/workflows/pb-tests.yml index dca7ad5..ea688a4 100644 --- a/.github/workflows/pb-tests.yml +++ b/.github/workflows/pb-tests.yml @@ -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 # @@ -129,7 +129,7 @@ jobs: run: |- #!/usr/bin/env bash - set -xeuo pipefail + set -euo pipefail COMPILED_BUILDPACK="${HOME}/buildpack" diff --git a/.github/workflows/pb-update-go.yml b/.github/workflows/pb-update-go.yml index ce1a9e5..140a318 100644 --- a/.github/workflows/pb-update-go.yml +++ b/.github/workflows/pb-update-go.yml @@ -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 -- .