Skip to content

Commit

Permalink
fix: fixed the pinned dependencies issue
Browse files Browse the repository at this point in the history
Signed-off-by: harshitasao <[email protected]>
  • Loading branch information
harshitasao committed Aug 18, 2024
1 parent c51ee6c commit 4480b02
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ 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
uses: knative/actions/setup-go@8d6af971ff477fdd929367f4c33c865ba0082b13 # main

- name: Setup Cache Directories
run: |
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/[email protected]
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 @@ -153,9 +153,9 @@ jobs:

steps:
- name: setup-go
uses: knative/actions/setup-go@main
uses: knative/actions/setup-go@8d6af971ff477fdd929367f4c33c865ba0082b13 # 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@2faf313e789d339d91d3c4a73445ccdf90e5272d # 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@2faf313e789d339d91d3c4a73445ccdf90e5272d # main
# Only upload logs on failure.
if: ${{ failure() }}
with:
Expand Down

0 comments on commit 4480b02

Please sign in to comment.