-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1380 from buildpacks-community/0-12-3-bump-deps
[0.12.x] Cherry-pick dependabot updates and bump go compiler
- Loading branch information
Showing
5 changed files
with
571 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,10 @@ inputs: | |
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: 'go.mod' | ||
- name: setup-pack-linux | ||
if: ${{ runner.os == 'linux' }} | ||
uses: buildpacks/github-actions/[email protected] | ||
|
@@ -46,7 +50,7 @@ runs: | |
KPACK_VERSION=$version | ||
KPACK_COMMIT=$GITHUB_SHA | ||
mkdir report | ||
export PATH="$PATH:$(pwd)" | ||
pack build ${{ inputs.tag }} \ | ||
--builder ${{ inputs.builder }} \ | ||
|
@@ -55,7 +59,7 @@ runs: | |
--report-output-dir . \ | ||
--cache-image ${{ inputs.tag }}-cache \ | ||
--publish ${{ inputs.additional_pack_args }} | ||
mkdir images | ||
digest=$(go run .github/actions/pack-build/report.go -path ./report.toml) | ||
name=$(basename ${{ inputs.tag }}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -239,7 +239,7 @@ jobs: | |
go-version-file: 'go.mod' | ||
|
||
- name: Setup carvel | ||
uses: carvel-dev/setup-action@v1 | ||
uses: carvel-dev/setup-action@v2 | ||
with: | ||
token: ${{ secrets.RELEASE_TOKEN }} | ||
only: ytt, kapp | ||
|
@@ -296,7 +296,7 @@ jobs: | |
uses: imjasonh/[email protected] | ||
|
||
- name: Setup carvel | ||
uses: carvel-dev/setup-action@v1 | ||
uses: carvel-dev/setup-action@v2 | ||
with: | ||
token: ${{ secrets.RELEASE_TOKEN }} | ||
only: ytt, kapp | ||
|
@@ -453,7 +453,7 @@ jobs: | |
uses: imjasonh/[email protected] | ||
|
||
- name: Setup carvel | ||
uses: carvel-dev/setup-action@v1 | ||
uses: carvel-dev/setup-action@v2 | ||
with: | ||
token: ${{ secrets.RELEASE_TOKEN }} | ||
only: ytt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,11 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: 'go.mod' | ||
- name: Run tests | ||
run: make unit-ci | ||
- name: Report coverage | ||
uses: codecov/[email protected] | ||
uses: codecov/[email protected] |
Oops, something went wrong.