Skip to content

Commit

Permalink
Merge branch 'buildpacks-community:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ghousemohamed authored Sep 6, 2024
2 parents 54e0b6e + b5d7388 commit 765f80f
Show file tree
Hide file tree
Showing 139 changed files with 10,333 additions and 2,080 deletions.
15 changes: 11 additions & 4 deletions .github/actions/pack-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ inputs:
required: true
additional_pack_args:
description: 'additional args for pack'
artifact_name:
description: 'name of the artifact to upload'
required: true

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/setup-pack@v5.0.0
Expand All @@ -46,7 +53,7 @@ runs:
KPACK_VERSION=$version
KPACK_COMMIT=$GITHUB_SHA
mkdir report
export PATH="$PATH:$(pwd)"
pack build ${{ inputs.tag }} \
--builder ${{ inputs.builder }} \
Expand All @@ -55,7 +62,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 }})
Expand Down Expand Up @@ -85,7 +92,7 @@ runs:
echo "${{ inputs.tag }}@${digest}" > images/$name
cat images/$name
- name: Upload Image Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: images
name: ${{ inputs.artifact_name }}
path: images/
10 changes: 0 additions & 10 deletions .github/actions/run-tests/Dockerfile

This file was deleted.

12 changes: 0 additions & 12 deletions .github/actions/run-tests/action.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,39 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
ignore:
- dependency-name: "k8s.io/api"
- dependency-name: "k8s.io/apimachinery"
- dependency-name: "k8s.io/client-go"

# Dependencies listed in .github/workflows/*.yml
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

# Monitor old release branches as well
- package-ecosystem: "gomod"
target-branch: "release/v0.12.x"
labels: ["go", "dependencies", "release/v0.12.x"]
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
target-branch: "release/v0.11.x"
labels: ["go", "dependencies", "release/v0.11.x"]
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
target-branch: "release/v0.10.x"
labels: ["go", "dependencies", "release/v0.10.x"]
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
target-branch: "release/v0.9.x"
labels: ["go", "dependencies", "release/v0.9.x"]
directory: "/"
schedule:
interval: "weekly"
Loading

0 comments on commit 765f80f

Please sign in to comment.