Skip to content

Commit

Permalink
remove hardcoded versions
Browse files Browse the repository at this point in the history
  • Loading branch information
antoooks committed May 30, 2024
1 parent 5261f26 commit d9a1e83
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ jobs:
git remote -v
# Pin dependencies: kyaml, cmd/config
gorepomod pin kyaml v0.17.0 --local --doIt
gorepomod pin cmd/config v0.14.0 --local --doIt
gorepomod pin kyaml --local --doIt
gorepomod pin cmd/config --local --doIt
- name: Build api
run: |
make build-kustomize-api
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cmd-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
git remote -v
# Pin dependencies: kyaml
gorepomod pin kyaml v0.17.0 --local --doIt
gorepomod pin kyaml --local --doIt
- name: Build test
run: |
make build-kustomize-api
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-kustomize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ jobs:
git remote -v
# Pin dependencies: kyaml, cmd/config, api
gorepomod pin kyaml v0.17.0 --local --doIt
gorepomod pin cmd/config v0.14.0 --local --doIt
gorepomod pin api v0.17.1 --local --doIt
gorepomod pin kyaml --local --doIt
gorepomod pin cmd/config --local --doIt
gorepomod pin api --local --doIt
- name: Build test
run: |
make build-kustomize-api
Expand Down

0 comments on commit d9a1e83

Please sign in to comment.