Skip to content

Commit

Permalink
update release process workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
plorenz committed May 13, 2024
1 parent 8e4eb9f commit f7beeaa
Show file tree
Hide file tree
Showing 9 changed files with 119 additions and 1,086 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,7 @@ jobs:

- name: Build and Test
run: |
$(go env GOPATH)/bin/ziti-ci generate-build-info ziti/sdkinfo/build_info.go sdkinfo
go test ./...
go test -C example ./...
- name: Release
env:
gh_ci_key: ${{ secrets.GH_CI_KEY }}
ziti_ci_gpg_key: ${{ secrets.ZITI_CI_GPG_KEY }}
ziti_ci_gpg_key_id: ${{ secrets.ZITI_CI_GPG_KEY_ID }}
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release-')
run: |
$(go env GOPATH)/bin/ziti-ci configure-git
$(go env GOPATH)/bin/ziti-ci tag -v -f version
$(go env GOPATH)/bin/ziti-ci trigger-github-build openziti/edge update-dependency --token ${{ secrets.ZITI_CI_GH_TOKEN }}
go install ./...
$(go env GOPATH)/bin/ziti-ci verify-version $($(go env GOPATH)/bin/sdk-version)
42 changes: 0 additions & 42 deletions .github/workflows/update-dependency.yml

This file was deleted.

29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# Release notes 0.23.36

## Issues Fixed and Dependency Updates

* github.com/openziti/sdk-golang: [v0.23.35 -> v0.23.36](https://github.com/openziti/sdk-golang/compare/v0.23.35...v0.23.36)
old tag hash 5839076b75fef400750efeb985fdee62a9883329
* 778863b: update release process workflows (paul.lorenz@netfoundry.io)
* [Issue #562](https://github.com/openziti/sdk-golang/issues/562) - Support sticky dials

* go.mozilla.org/pkcs7: v0.0.0-20200128120323-432b2356ecb1 -> v0.0.0-20210826202110-33d05740a352
* golang.org/x/exp: v0.0.0-20221031165847-c99f073a8326 -> v0.0.0-20240506185415-9bf2ced13842
* golang.org/x/oauth2: v0.19.0 -> v0.20.0
* golang.org/x/sys: v0.19.0 -> v0.20.0
* google.golang.org/protobuf: v1.34.0 -> v1.34.1
* github.com/go-ole/go-ole: v1.2.6 -> v1.3.0
* github.com/gorilla/schema: v1.2.0 -> v1.3.0
* github.com/gorilla/securecookie: v1.1.1 -> v1.1.2
* github.com/lufia/plan9stats: v0.0.0-20211012122336-39d0f177ccd0 -> v0.0.0-20240408141607-282e7b5d6b74
* github.com/power-devops/perfstat: v0.0.0-20210106213030-5aafc221ea8c -> v0.0.0-20240221224432-82ca36839d55
* github.com/tklauser/go-sysconf: v0.3.12 -> v0.3.14
* github.com/tklauser/numcpus: v0.6.1 -> v0.8.0
* go.opentelemetry.io/otel: v1.25.0 -> v1.26.0
* go.opentelemetry.io/otel/metric: v1.25.0 -> v1.26.0
* go.opentelemetry.io/otel/trace: v1.25.0 -> v1.26.0
* golang.org/x/crypto: v0.22.0 -> v0.23.0
* golang.org/x/net: v0.24.0 -> v0.25.0
* golang.org/x/term: v0.19.0 -> v0.20.0
* golang.org/x/text: v0.14.0 -> v0.15.0

# Release 0.23.12

* Fix DomainCheckRedirectPolicy for OIDC auth to controllers
Expand Down
40 changes: 19 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module github.com/openziti/sdk-golang

go 1.21

toolchain go1.22.1

require (
github.com/Jeffail/gabs v1.4.0
github.com/cenkalti/backoff/v4 v4.3.0
Expand Down Expand Up @@ -32,11 +30,11 @@ require (
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.9.0
github.com/zitadel/oidc/v2 v2.12.0
go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1
golang.org/x/exp v0.0.0-20221031165847-c99f073a8326
golang.org/x/oauth2 v0.19.0
golang.org/x/sys v0.19.0
google.golang.org/protobuf v1.34.0
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
golang.org/x/oauth2 v0.20.0
golang.org/x/sys v0.20.0
google.golang.org/protobuf v1.34.1
)

require (
Expand All @@ -46,7 +44,7 @@ require (
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-ole/go-ole v1.3.0 // indirect
github.com/go-openapi/analysis v0.23.0 // indirect
github.com/go-openapi/errors v0.22.0 // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
Expand All @@ -56,11 +54,11 @@ require (
github.com/go-openapi/swag v0.23.0 // indirect
github.com/go-openapi/validate v0.24.0 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/gorilla/schema v1.2.0 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/gorilla/schema v1.3.0 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/lufia/plan9stats v0.0.0-20240408141607-282e7b5d6b74 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
Expand All @@ -71,21 +69,21 @@ require (
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/parallaxsecond/parsec-client-go v0.0.0-20221025095442-f0a77d263cf9 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
github.com/shoenig/go-m1cpu v0.1.6 // indirect
github.com/speps/go-hashids v2.0.0+incompatible // indirect
github.com/tklauser/go-sysconf v0.3.12 // indirect
github.com/tklauser/numcpus v0.6.1 // indirect
github.com/tklauser/go-sysconf v0.3.14 // indirect
github.com/tklauser/numcpus v0.8.0 // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
go.mongodb.org/mongo-driver v1.15.0 // indirect
go.opentelemetry.io/otel v1.25.0 // indirect
go.opentelemetry.io/otel/metric v1.25.0 // indirect
go.opentelemetry.io/otel/trace v1.25.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/net v0.24.0 // indirect
go.opentelemetry.io/otel v1.26.0 // indirect
go.opentelemetry.io/otel/metric v1.26.0 // indirect
go.opentelemetry.io/otel/trace v1.26.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/term v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
nhooyr.io/websocket v1.8.11 // indirect
Expand Down

0 comments on commit f7beeaa

Please sign in to comment.