Skip to content

Commit

Permalink
Merge branch 'main' into add-metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
BEvgeniyS committed Jan 22, 2023
2 parents 83def45 + 207303e commit 3a5046d
Show file tree
Hide file tree
Showing 14 changed files with 1,052 additions and 469 deletions.
3 changes: 2 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ updates:
directory: "/"
target-branch: "main"
schedule:
interval: "weekly"
interval: "daily"
versioning-strategy: increase
1 change: 0 additions & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,3 @@ autolabeler:
- label: 'enhancement'
title:
- '/feat:/i'

26 changes: 19 additions & 7 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,28 @@ changelog:
categories:
- title: 🛠 Breaking Changes
labels:
- Semver-Major
- breaking-change
- title: 🎉 Features
- title: '🚀 Features'
labels:
- Semver-Minor
- feature
- title: 🐛 Bug Fixes
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- Semver-Minor
- bugfix
- 'fix'
- 'bugfix'
- 'bug'
- title: '📝 Documentation'
label: 'docs'
- title: '🧰 Maintenance'
label: 'chore'
- title: '⬆️ Dependencies'
collapse-after: 3
labels:
- 'dependencies'
- title: '👷 Continuous Integration'
collapse-after: 3
labels:
- 'ci'
- title: Other Changes
labels:
- "*"
5 changes: 5 additions & 0 deletions .github/workflows/codeball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
pull_request_review_comment:
types: [created, edited]

permissions:
contents: read
issues: write
pull-requests: write

jobs:
codeball_job:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-python@v4.4.0
- uses: actions/setup-python@v4.5.0
with:
python-version: '3.x'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
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: actions/setup-python@v4.4.0
- uses: actions/setup-python@v4.5.0
with:
python-version: '3.x'
- uses: actions/setup-go@v3
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
env:
GH_TOKEN: ${{ secrets.CR_PAT }}

- run:
echo NEXT_RELEASE_VERSION=$(cat /tmp/next-release-version.txt)
echo NEXT_RELEASE_VERSION=$(cat /tmp/next-release-version.txt) >> $GITHUB_ENV

release:
name: Release
runs-on: ubuntu-latest
Expand All @@ -44,7 +48,7 @@ jobs:
uses: actions/checkout@v3
with:
token: ${{ secrets.CR_PAT }}
ref: ${{ inputs.forRef }}
ref: ${{ inputs.forRef || env.NEXT_RELEASE_VERSION }}

- name: Unshallow
run: git fetch --prune --unshallow
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
check-latest: true
cache: true

- uses: actions/cache@v3.2.2
- uses: actions/cache@v3.2.3
with:
path: |
~/go/pkg/mod # Module download cache
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
check-latest: true
cache: true

- uses: actions/cache@v3.2.2
- uses: actions/cache@v3.2.3
with:
path: |
~/go/pkg/mod # Module download cache
Expand Down
2 changes: 2 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ plugins:
- - "@semantic-release/exec"
- generateNotesCmd: |
echo "${nextRelease.notes}" > /tmp/release-notes.md
verifyReleaseCmd: |
echo "${nextRelease.version}" > /tmp/next-release-version.txt

branch: main
branches:
Expand Down
48 changes: 23 additions & 25 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.18

require (
github.com/alitto/pond v1.8.2
github.com/aws/aws-sdk-go v1.44.180
github.com/aws/aws-sdk-go v1.44.183
github.com/containers/image/v5 v5.23.1
github.com/dgraph-io/ristretto v0.1.1
github.com/evanphx/json-patch v5.6.0+incompatible
Expand All @@ -18,21 +18,21 @@ require (
github.com/rs/zerolog v1.28.0
github.com/slok/kubewebhook/v2 v2.5.0
github.com/spf13/cobra v1.6.1
github.com/spf13/viper v1.14.0
github.com/spf13/viper v1.15.0
github.com/stretchr/testify v1.8.1
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.26.0
k8s.io/apimachinery v0.26.0
k8s.io/client-go v0.26.0
k8s.io/api v0.26.1
k8s.io/apimachinery v0.26.1
k8s.io/client-go v0.26.1
sigs.k8s.io/yaml v1.3.0 // indirect
)

require (
cloud.google.com/go v0.104.0 // indirect
cloud.google.com/go/compute v1.12.1 // indirect
cloud.google.com/go/compute/metadata v0.2.1 // indirect
cloud.google.com/go/iam v0.4.0 // indirect
cloud.google.com/go/storage v1.23.0 // indirect
cloud.google.com/go v0.105.0 // indirect
cloud.google.com/go/compute v1.14.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v0.8.0 // indirect
cloud.google.com/go/storage v1.27.0 // indirect
github.com/BurntSushi/toml v1.2.0 // indirect
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/Microsoft/hcsshim v0.9.4 // indirect
Expand Down Expand Up @@ -72,9 +72,8 @@ require (
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/go-intervals v0.0.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
github.com/googleapis/gax-go/v2 v2.6.0 // indirect
github.com/googleapis/go-type-adapters v1.0.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.1 // indirect
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/gruntwork-io/go-commons v0.8.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
Expand All @@ -93,7 +92,7 @@ require (
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.15.11 // indirect
github.com/klauspost/pgzip v1.2.5 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
Expand All @@ -115,8 +114,7 @@ require (
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 // indirect
github.com/opencontainers/selinux v1.10.2 // indirect
github.com/ostreedev/ostree-go v0.0.0-20210805093236-719684c64e4f // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/pquerna/otp v1.2.0 // indirect
Expand All @@ -126,36 +124,36 @@ require (
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/spf13/afero v1.9.2 // indirect
github.com/spf13/afero v1.9.3 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
github.com/sylabs/sif/v2 v2.8.0 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
github.com/sylabs/sif/v2 v2.8.1 // indirect
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
github.com/tchap/go-patricia v2.3.0+incompatible // indirect
github.com/tmccombs/hcl2json v0.3.3 // indirect
github.com/ulikunitz/xz v0.5.10 // indirect
github.com/urfave/cli v1.22.4 // indirect
github.com/vbatts/tar-split v0.11.2 // indirect
github.com/zclconf/go-cty v1.9.1 // indirect
go.opencensus.io v0.23.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.0.0-20220919173607-35f4265a4bc0 // indirect
golang.org/x/net v0.3.1-0.20221206200815-1e63c2f08a10 // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/term v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
golang.org/x/time v0.1.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gomodules.xyz/jsonpatch/v3 v3.0.1 // indirect
gomodules.xyz/orderedmap v0.1.0 // indirect
google.golang.org/api v0.102.0 // indirect
google.golang.org/api v0.107.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e // indirect
google.golang.org/grpc v1.50.1 // indirect
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef // indirect
google.golang.org/grpc v1.52.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
Expand Down

0 comments on commit 3a5046d

Please sign in to comment.