Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixed the pinned dependencies issue #15475

Merged
merged 2 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
# Check for updates to GitHub Actions every month
interval: "monthly"
groups:
github-actions:
patterns:
- "*"
18 changes: 9 additions & 9 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: setup-go
uses: knative/actions/setup-go@main
Expand All @@ -35,7 +35,7 @@ jobs:
mkdir -p ~/artifacts/build
mkdir -p ~/artifacts/registry

- uses: actions/cache@v4
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: |
~/.cache/go-build
Expand All @@ -46,7 +46,7 @@ jobs:

# Install the latest release of ko
- name: Install ko
uses: ko-build/setup-ko@v0.7
uses: ko-build/setup-ko@3aebd0597dc1e9d1a26bcfdb7cbeb19c131d3037 # v0.7

- name: Setup Registry
run: |
Expand All @@ -68,7 +68,7 @@ jobs:
run: |
./test/upload-test-images.sh

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: artifacts
path: ~/artifacts
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
- name: setup-go
uses: knative/actions/setup-go@main

- uses: actions/cache@v4
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: |
~/.cache/go-build
Expand All @@ -164,13 +164,13 @@ jobs:
restore-keys: |
${{ runner.os }}-go-

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: artifacts
path: ~/artifacts

- name: setup kind
uses: chainguard-dev/actions/setup-kind@main
uses: chainguard-dev/actions/setup-kind@141bf225e9c19c34304ee9d06e9be9c44a6d8765 # main
with:
k8s-version: ${{ matrix.k8s-version }}
kind-worker-count: 4
Expand All @@ -186,7 +186,7 @@ jobs:
sudo mv gotestsum /usr/local/bin
echo "::endgroup::"

- uses: actions/checkout@v4
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0

Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
--ingress-class=${{ matrix.ingress-class || matrix.ingress }}.ingress.networking.knative.dev \
${{ matrix.test-flags }}

- uses: chainguard-dev/actions/kind-diag@main
- uses: chainguard-dev/actions/kind-diag@141bf225e9c19c34304ee9d06e9be9c44a6d8765 # main
# Only upload logs on failure.
if: ${{ failure() }}
with:
Expand Down
Loading