Skip to content
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.

Commit

Permalink
Revert too frequent updates
Browse files Browse the repository at this point in the history
  • Loading branch information
BarnabyShearer committed Jul 20, 2021
1 parent 273e94e commit c4a0512
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
go get -u golang.org/x/lint/golint
-
name: Run build
run: go build .
run: go build .
-
name: Run vet & lint
run: |
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.2.4

BUG FIXES:

- Revert 0.2.3 it always updates.

## 0.2.3

BUG FIXES:
Expand Down
2 changes: 1 addition & 1 deletion codeship/resource_encrypted.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
func resourceEncrypted() *schema.Resource {
return &schema.Resource{
CreateContext: resourceEncryptedCreate,
ReadContext: resourceEncryptedCreate,
ReadContext: noop,
UpdateContext: resourceEncryptedCreate,
DeleteContext: noop,
Importer: &schema.ResourceImporter{
Expand Down
22 changes: 15 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,40 +16,48 @@ require (
github.com/gordonklaus/ineffassign v0.0.0-20210522101830-0589229737b2 // indirect
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-hclog v0.16.1 // indirect
github.com/hashicorp/go-hclog v0.16.2 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.4.2 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/hcl/v2 v2.10.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.3.1 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.7.0
github.com/hashicorp/yamux v0.0.0-20210316155119-a95892c5f864 // indirect
github.com/hashicorp/yamux v0.0.0-20210707203944-259a57b3608c // indirect
github.com/julz/importas v0.0.0-20210419104244-841f0c0fe66d // indirect
github.com/ldez/gomoddirectives v0.2.2 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mgechev/revive v1.0.8 // indirect
github.com/mgechev/revive v1.0.9 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/nishanths/exhaustive v0.2.3 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/polyfloyd/go-errorlint v0.0.0-20210703140202-08db7c85d78a // indirect
github.com/prometheus/common v0.29.0 // indirect
github.com/prometheus/procfs v0.7.0 // indirect
github.com/quasilyte/regex/syntax v0.0.0-20200805063351-8f842688393c // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sanposhiho/wastedassign v1.0.0 // indirect
github.com/securego/gosec/v2 v2.8.1 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.2.1 // indirect
github.com/spf13/viper v1.8.1 // indirect
github.com/stretchr/objx v0.3.0 // indirect
github.com/tetafro/godot v1.4.8 // indirect
github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144 // indirect
github.com/tomarrell/wrapcheck v1.2.0 // indirect
github.com/tomarrell/wrapcheck/v2 v2.2.0 // indirect
github.com/uudashr/gocognit v1.0.5 // indirect
github.com/zclconf/go-cty v1.9.0 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect
golang.org/x/net v0.0.0-20210716203947-853a461950ff // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20210629135825-364e77e5a69d // indirect
google.golang.org/genproto v0.0.0-20210719143636-1d5a45f8e492 // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
mvdan.cc/unparam v0.0.0-20210520122750-2ac67f130a88 // indirect
mvdan.cc/unparam v0.0.0-20210701114405-894c3c7ee6a6 // indirect
)
Loading

0 comments on commit c4a0512

Please sign in to comment.