chore: update codecov/codecov-action (#2267)

* chore: update codecov/codecov-action

Signed-off-by: Matej Vašek <mvasek@redhat.com>

* chore: pin paketo builder version

Signed-off-by: Matej Vašek <mvasek@redhat.com>

---------

Signed-off-by: Matej Vašek <mvasek@redhat.com>
This commit is contained in:
Matej Vašek 2024-04-10 13:47:01 +02:00 committed by GitHub
parent 27c1744d62
commit cf433243cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 12 additions and 12 deletions

View File

@ -34,7 +34,7 @@ jobs:
run: make test run: make test
- name: Template Unit Tests - name: Template Unit Tests
run: make test-templates run: make test-templates
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: unit-tests-${{ matrix.os }} flags: unit-tests-${{ matrix.os }}
@ -58,7 +58,7 @@ jobs:
run: ./hack/setup-testing-images.sh run: ./hack/setup-testing-images.sh
- name: Integration Tests - name: Integration Tests
run: make test-integration run: make test-integration
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: integration-tests flags: integration-tests
@ -83,7 +83,7 @@ jobs:
run: ./hack/registry.sh run: ./hack/registry.sh
- name: E2E Test - name: E2E Test
run: make test-e2e run: make test-e2e
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: e2e-test flags: e2e-test
@ -115,7 +115,7 @@ jobs:
env: env:
E2E_RUNTIMES: "" E2E_RUNTIMES: ""
run: make test-e2e-on-cluster run: make test-e2e-on-cluster
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: e2e-test-oncluster flags: e2e-test-oncluster

View File

@ -47,7 +47,7 @@ jobs:
echo "::group::cluster containers logs" echo "::group::cluster containers logs"
stern '.*' --all-namespaces --no-follow stern '.*' --all-namespaces --no-follow
echo "::endgroup::" echo "::endgroup::"
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: e2e-test-oncluster-runtime flags: e2e-test-oncluster-runtime

View File

@ -33,7 +33,7 @@ jobs:
FUNC_REPO_REF: ${{ github.event.pull_request.head.repo.full_name }} FUNC_REPO_REF: ${{ github.event.pull_request.head.repo.full_name }}
FUNC_REPO_BRANCH_REF: ${{ github.head_ref }} FUNC_REPO_BRANCH_REF: ${{ github.head_ref }}
run: make test-e2e-on-cluster run: make test-e2e-on-cluster
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: e2e-test-oncluster flags: e2e-test-oncluster

View File

@ -31,7 +31,7 @@ jobs:
run: make run: make
- name: E2E runtime for ${{ matrix.runtime }} - name: E2E runtime for ${{ matrix.runtime }}
run: make test-e2e-runtime runtime=${{ matrix.runtime }} run: make test-e2e-runtime runtime=${{ matrix.runtime }}
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: e2e-test-runtime-${{ matrix.runtime }} flags: e2e-test-runtime-${{ matrix.runtime }}

View File

@ -24,7 +24,7 @@ jobs:
run: ./hack/registry.sh run: ./hack/registry.sh
- name: E2E Test - name: E2E Test
run: make test-e2e run: make test-e2e
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: e2e-test flags: e2e-test

View File

@ -53,7 +53,7 @@ jobs:
echo "::group::cluster containers logs" echo "::group::cluster containers logs"
stern '.*' --all-namespaces --no-follow stern '.*' --all-namespaces --no-follow
echo "::endgroup::" echo "::endgroup::"
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: integration-tests flags: integration-tests

View File

@ -35,7 +35,7 @@ jobs:
FUNC_REPO_BRANCH_REF: ${{ github.head_ref }} FUNC_REPO_BRANCH_REF: ${{ github.head_ref }}
- name: Template Unit Tests - name: Template Unit Tests
run: make test-templates run: make test-templates
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v4
with: with:
files: ./coverage.txt files: ./coverage.txt
flags: unit-tests-${{ matrix.os }} flags: unit-tests-${{ matrix.os }}

View File

@ -27,8 +27,8 @@ import (
// DefaultName when no WithName option is provided to NewBuilder // DefaultName when no WithName option is provided to NewBuilder
const DefaultName = builders.Pack const DefaultName = builders.Pack
var DefaultBaseBuilder = "ghcr.io/knative/builder-jammy-base:latest" var DefaultBaseBuilder = "ghcr.io/knative/builder-jammy-base:0.4.283"
var DefaultTinyBuilder = "ghcr.io/knative/builder-jammy-tiny:latest" var DefaultTinyBuilder = "ghcr.io/knative/builder-jammy-tiny:0.0.240"
var ( var (
DefaultBuilderImages = map[string]string{ DefaultBuilderImages = map[string]string{