Skip to content

Commit

Permalink
Release v0.27.4 (#3906)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonathan Innis <jonathan.innis.ji@gmail.com>
  • Loading branch information
bwagner5 and jonathan-innis committed May 18, 2023
1 parent d7e22b1 commit 8e448b6
Show file tree
Hide file tree
Showing 16 changed files with 36 additions and 39 deletions.
20 changes: 20 additions & 0 deletions .github/actions/install-deps/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: InstallDependencies
description: 'Installs Go Downloads and installs Karpenter Dependencies'
runs:
using: "composite"
steps:
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
cache-dependency-path: "**/go.sum"
- uses: actions/cache@v3
id: cache-toolchain
with:
path: |
~/.kubebuilder/bin
~/go/bin
key: ${{ runner.os }}-toolchain-cache-${{ hashFiles('hack/toolchain.sh') }}
- if: ${{ steps.cache-toolchain.outputs.cache-hit != 'true' }}
shell: bash
run: make toolchain
23 changes: 0 additions & 23 deletions .github/actions/install-go-and-dependencies/action.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/approval-comment-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0
repository: ${{ github.repository }}
ref: ${{ env.PR_COMMIT }}
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- uses: ./.github/actions/authenticate-aws
- run: make release
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
K8S_VERSION: ${{ matrix.k8sVersion }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- run: make ci-test
- uses: shogo82148/actions-goveralls@v1
if: env.K8S_VERSION == '1.24.x'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- run: make ci-non-test
2 changes: 1 addition & 1 deletion .github/workflows/codegen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- run: |
git config user.name "APICodeGen"
git config user.email "APICodeGen@users.noreply.github.com"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- run: make vulncheck
- uses: github/codeql-action/init@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deflake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- name: Running tests 5 times to find flaky tests
id: run-deflake
run: make deflake
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docgen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- uses: ./.github/actions/authenticate-aws
- run: make docgen
- run: make codegen
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- uses: ./.github/actions/authenticate-aws
- run: ./push-docker.sh
working-directory: ./tools/release-notification-listener
2 changes: 1 addition & 1 deletion .github/workflows/publish-test-tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- uses: ./.github/actions/authenticate-aws
- run: ./push-docker.sh
working-directory: ./test
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
fetch-depth: 0
ref: ${{ env.TAG_COMMIT }}
- uses: ./.github/actions/install-go-and-dependencies
- uses: ./.github/actions/install-deps
- uses: ./.github/actions/authenticate-aws
- uses: ./.github/actions/authenticate-ghcr
with:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/PuerkitoBio/goquery v1.8.1
github.com/avast/retry-go v3.0.0+incompatible
github.com/aws/aws-sdk-go v1.44.195
github.com/aws/karpenter-core v0.27.3
github.com/aws/karpenter-core v0.27.4
github.com/go-playground/validator/v10 v10.11.2
github.com/imdario/mergo v0.3.15
github.com/mitchellh/hashstructure/v2 v2.0.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ github.com/avast/retry-go v3.0.0+incompatible h1:4SOWQ7Qs+oroOTQOYnAHqelpCO0biHS
github.com/avast/retry-go v3.0.0+incompatible/go.mod h1:XtSnn+n/sHqQIpZ10K1qAevBhOOCWBLXXy3hyiqqBrY=
github.com/aws/aws-sdk-go v1.44.195 h1:d5xFL0N83Fpsq2LFiHgtBUHknCRUPGHdOlCWt/jtOJs=
github.com/aws/aws-sdk-go v1.44.195/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI=
github.com/aws/karpenter-core v0.27.3 h1:8Kx4BS/0eT9Tpybtpd5o2cwUP7q5ujxSgpMCzUJP1iU=
github.com/aws/karpenter-core v0.27.3/go.mod h1:NQOEY9xxhPi6xUTknEA0KaY9pPbXzS5N4EKkZ5f85d8=
github.com/aws/karpenter-core v0.27.4 h1:z9KtZpdYpoOVORzW4iQcPEa0nXuG1oQLssF0rjgI+KU=
github.com/aws/karpenter-core v0.27.4/go.mod h1:NQOEY9xxhPi6xUTknEA0KaY9pPbXzS5N4EKkZ5f85d8=
github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
Expand Down
2 changes: 1 addition & 1 deletion test/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/aws/aws-sdk-go v1.44.234
github.com/aws/aws-sdk-go-v2/config v1.18.19
github.com/aws/karpenter v0.22.0
github.com/aws/karpenter-core v0.27.3
github.com/aws/karpenter-core v0.27.4
github.com/onsi/ginkgo/v2 v2.9.2
github.com/onsi/gomega v1.27.6
github.com/samber/lo v1.38.1
Expand Down
4 changes: 2 additions & 2 deletions test/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6 h1:B8cauxOH1W1v7rd8RdI/MWno
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s=
github.com/aws/aws-sdk-go-v2/service/sts v1.18.7 h1:bWNgNdRko2x6gqa0blfATqAZKZokPIeM1vfmQt2pnvM=
github.com/aws/aws-sdk-go-v2/service/sts v1.18.7/go.mod h1:JuTnSoeePXmMVe9G8NcjjwgOKEfZ4cOjMuT2IBT/2eI=
github.com/aws/karpenter-core v0.27.3 h1:8Kx4BS/0eT9Tpybtpd5o2cwUP7q5ujxSgpMCzUJP1iU=
github.com/aws/karpenter-core v0.27.3/go.mod h1:NQOEY9xxhPi6xUTknEA0KaY9pPbXzS5N4EKkZ5f85d8=
github.com/aws/karpenter-core v0.27.4 h1:z9KtZpdYpoOVORzW4iQcPEa0nXuG1oQLssF0rjgI+KU=
github.com/aws/karpenter-core v0.27.4/go.mod h1:NQOEY9xxhPi6xUTknEA0KaY9pPbXzS5N4EKkZ5f85d8=
github.com/aws/smithy-go v1.13.5 h1:hgz0X/DX0dGqTYpGALqXJoRKRj5oQ7150i5FdTePzO8=
github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA=
github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=
Expand Down

0 comments on commit 8e448b6

Please sign in to comment.