You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using kustomize in my Github actions workflow. As of today I receive the following error when executing a Github action workflow.
Unable to find Kustomize version '3.6.1' for platform 'linux' and architecture amd64.
I filed a bug with the Github actions team. They investigated at actions/runner-images#2485 . Their feedback was as follows:
Looks like when setup-kustomize retrieves the list of versions kubernetes-sigs/kustomize, pagination doesn't work properly and it retrieves only first 30 results.
Previously, it worked but recently, a bunch of new versions were added to https://github.com/kubernetes-sigs/kustomize and version 3.6.1 is not in the first 30 results.
I'm using kustomize in my Github actions workflow. As of today I receive the following error when executing a Github action workflow.
Unable to find Kustomize version '3.6.1' for platform 'linux' and architecture amd64.
I filed a bug with the Github actions team. They investigated at actions/runner-images#2485 . Their feedback was as follows:
Looks like when setup-kustomize retrieves the list of versions kubernetes-sigs/kustomize, pagination doesn't work properly and it retrieves only first 30 results.
Previously, it worked but recently, a bunch of new versions were added to https://github.com/kubernetes-sigs/kustomize and version 3.6.1 is not in the first 30 results.
In the Github Action we use; imranismail/setup-kustomize@v1 to download and install kustomize in runtime from https://github.com/kubernetes-sigs/kustomize.
Attached is my master.yml which references imranismail/setup-kustomize which in-turn runs setup-kustomize:
`
name: CI
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
deploy:
needs: build
`
Platform
Ubuntu-latest
The text was updated successfully, but these errors were encountered: