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

Updated the chainguard-dev/actions/setup-kind version #259

Merged
merged 1 commit into from
Dec 19, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

Check failure on line 47 in .github/workflows/kind-e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/kind-e2e.yaml:47:13: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]

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

- uses: actions/cache@v3

Check failure on line 58 in .github/workflows/kind-e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/cache@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/kind-e2e.yaml:58:13: the runner of "actions/cache@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -102,7 +102,7 @@
cd ${KNATIVE_SERVING_DIR}
./test/upload-test-images.sh

- uses: actions/upload-artifact@v3

Check failure on line 105 in .github/workflows/kind-e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/kind-e2e.yaml:105:13: the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
name: artifacts
path: ~/artifacts
Expand Down Expand Up @@ -148,7 +148,7 @@
- name: setup-go
uses: knative/actions/setup-go@main

- uses: actions/cache@v3

Check failure on line 151 in .github/workflows/kind-e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/cache@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/kind-e2e.yaml:151:13: the runner of "actions/cache@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
path: |
~/.cache/go-build
Expand All @@ -157,13 +157,13 @@
restore-keys: |
${{ runner.os }}-go-

- uses: actions/download-artifact@v3

Check failure on line 160 in .github/workflows/kind-e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/download-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/kind-e2e.yaml:160:13: the runner of "actions/download-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
name: artifacts
path: ~/artifacts

- name: Setup kind
uses: chainguard-dev/actions/setup-kind@main
uses: chainguard-dev/actions/setup-kind@1f79ee3c1d554f67a5344933e2cadfa4b58d300d
with:
k8s-version: ${{ matrix.k8s-version }}
kind-worker-count: 4
Expand Down Expand Up @@ -191,7 +191,7 @@
sudo mv ytt /usr/local/bin
echo "::endgroup::"

- uses: actions/checkout@v3

Check failure on line 194 in .github/workflows/kind-e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/kind-e2e.yaml:194:13: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
fetch-depth: 0

Expand Down
Loading