Skip to content

Commit 9c901c0

Browse files
authored
Merge pull request #94 from axiomhq/amp/dependabot-rollup
2 parents 64914b6 + fae11f7 commit 9c901c0

6 files changed

Lines changed: 87 additions & 83 deletions

File tree

.github/workflows/acc-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
env:
1818
GO111MODULE: on
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121

2222
- name: Install Go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@v6
2424
with:
2525
go-version-file: go.mod
2626
cache: false
@@ -30,4 +30,4 @@ jobs:
3030
AXIOM_TOKEN: ${{ secrets.TF_PROVIDER_API_TOKEN }}
3131
AXIOM_URL: ${{ vars.AXIOM_URL }}
3232
run: |
33-
make testacc
33+
make testacc

.github/workflows/pr.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
runs-on: ubuntu-latest
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727

28-
- uses: actions/setup-go@v5
28+
- uses: actions/setup-go@v6
2929
with:
3030
go-version-file: go.mod
3131
cache: false
3232

3333
- name: Run golangci-lint
34-
uses: golangci/golangci-lint-action@v8
34+
uses: golangci/golangci-lint-action@v9
3535
with:
3636
version: latest
3737
args: --timeout=5m
@@ -43,10 +43,10 @@ jobs:
4343
GO111MODULE: on
4444

4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v6
4747

4848
- name: Install Go
49-
uses: actions/setup-go@v5
49+
uses: actions/setup-go@v6
5050
with:
5151
go-version-file: go.mod
5252
cache: false

.github/workflows/release.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,26 @@ jobs:
2020
steps:
2121
-
2222
name: Checkout
23-
uses: actions/checkout@v4
24-
-
25-
name: Unshallow
26-
run: git fetch --prune --unshallow
23+
uses: actions/checkout@v6
24+
with:
25+
fetch-depth: 0
2726
-
2827
name: Set up Go
29-
uses: actions/setup-go@v5
28+
uses: actions/setup-go@v6
3029
with:
3130
go-version-file: go.mod
3231
-
3332
name: Import GPG key
3433
id: import_gpg
35-
uses: crazy-max/ghaction-import-gpg@v6
34+
uses: crazy-max/ghaction-import-gpg@v7
3635
with:
3736
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
3837
passphrase: ${{ secrets.PASSPHRASE }}
3938
-
4039
name: Run GoReleaser
41-
uses: goreleaser/goreleaser-action@v5
40+
uses: goreleaser/goreleaser-action@v7
4241
with:
43-
version: latest
42+
version: v2.15.3
4443
args: release --clean
4544
env:
4645
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}

.goreleaser.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
version: 2
2+
13
before:
24
hooks:
35
- go mod download
@@ -26,7 +28,8 @@ builds:
2628
goos: windows
2729
binary: '{{ .ProjectName }}_{{ .Version }}'
2830
archives:
29-
- format: zip
31+
- formats:
32+
- zip
3033
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
3134
checksum:
3235
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
@@ -45,4 +48,4 @@ release:
4548
#disable: true
4649
draft: false
4750
changelog:
48-
skip: true
51+
disable: true

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ go 1.26.0
55
require (
66
github.com/axiomhq/axiom-go v0.31.1
77
github.com/google/uuid v1.6.0
8-
github.com/hashicorp/terraform-plugin-docs v0.21.0
9-
github.com/hashicorp/terraform-plugin-framework v1.15.0
10-
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0
11-
github.com/hashicorp/terraform-plugin-go v0.28.0
12-
github.com/hashicorp/terraform-plugin-log v0.9.0
13-
github.com/hashicorp/terraform-plugin-testing v1.13.2
8+
github.com/hashicorp/terraform-plugin-docs v0.25.0
9+
github.com/hashicorp/terraform-plugin-framework v1.19.0
10+
github.com/hashicorp/terraform-plugin-framework-validators v0.19.0
11+
github.com/hashicorp/terraform-plugin-go v0.31.0
12+
github.com/hashicorp/terraform-plugin-log v0.10.0
13+
github.com/hashicorp/terraform-plugin-testing v1.15.0
1414
github.com/stretchr/testify v1.11.1
1515
github.com/tidwall/gjson v1.18.0
1616
)
@@ -27,11 +27,11 @@ require (
2727
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2828
github.com/armon/go-radix v1.0.0 // indirect
2929
github.com/bgentry/speakeasy v0.1.0 // indirect
30-
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
30+
github.com/bmatcuk/doublestar/v4 v4.10.0 // indirect
3131
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
3232
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3333
github.com/cloudflare/circl v1.6.3 // indirect
34-
github.com/davecgh/go-spew v1.1.1 // indirect
34+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3535
github.com/fatih/color v1.18.0 // indirect
3636
github.com/felixge/httpsnoop v1.0.4 // indirect
3737
github.com/go-logr/logr v1.4.3 // indirect
@@ -46,17 +46,17 @@ require (
4646
github.com/hashicorp/go-cty v1.5.0 // indirect
4747
github.com/hashicorp/go-hclog v1.6.3 // indirect
4848
github.com/hashicorp/go-multierror v1.1.1 // indirect
49-
github.com/hashicorp/go-plugin v1.6.3 // indirect
49+
github.com/hashicorp/go-plugin v1.7.0 // indirect
5050
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
5151
github.com/hashicorp/go-uuid v1.0.3 // indirect
5252
github.com/hashicorp/go-version v1.9.0 // indirect
5353
github.com/hashicorp/hc-install v0.9.4 // indirect
54-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
54+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
5555
github.com/hashicorp/logutils v1.0.0 // indirect
56-
github.com/hashicorp/terraform-exec v0.23.0 // indirect
57-
github.com/hashicorp/terraform-json v0.25.0 // indirect
58-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0 // indirect
59-
github.com/hashicorp/terraform-registry-address v0.3.0 // indirect
56+
github.com/hashicorp/terraform-exec v0.25.0 // indirect
57+
github.com/hashicorp/terraform-json v0.27.3-0.20260213134036-298b8f6b673a // indirect
58+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.40.0 // indirect
59+
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
6060
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
6161
github.com/hashicorp/yamux v0.1.2 // indirect
6262
github.com/huandu/xstrings v1.5.0 // indirect
@@ -70,7 +70,7 @@ require (
7070
github.com/mitchellh/mapstructure v1.5.0 // indirect
7171
github.com/mitchellh/reflectwalk v1.0.2 // indirect
7272
github.com/oklog/run v1.1.0 // indirect
73-
github.com/pmezard/go-difflib v1.0.0 // indirect
73+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7474
github.com/posener/complete v1.2.3 // indirect
7575
github.com/rivo/uniseg v0.4.7 // indirect
7676
github.com/shopspring/decimal v1.4.0 // indirect
@@ -82,21 +82,21 @@ require (
8282
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
8383
github.com/yuin/goldmark v1.7.7 // indirect
8484
github.com/yuin/goldmark-meta v1.1.0 // indirect
85-
github.com/zclconf/go-cty v1.16.3 // indirect
85+
github.com/zclconf/go-cty v1.18.1 // indirect
8686
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
8787
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
8888
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
8989
go.opentelemetry.io/otel v1.42.0 // indirect
9090
go.opentelemetry.io/otel/metric v1.42.0 // indirect
9191
go.opentelemetry.io/otel/trace v1.42.0 // indirect
92-
golang.org/x/crypto v0.49.0 // indirect
92+
golang.org/x/crypto v0.50.0 // indirect
9393
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
9494
golang.org/x/mod v0.35.0 // indirect
95-
golang.org/x/net v0.52.0 // indirect
95+
golang.org/x/net v0.53.0 // indirect
9696
golang.org/x/sync v0.20.0 // indirect
97-
golang.org/x/sys v0.42.0 // indirect
98-
golang.org/x/text v0.35.0 // indirect
99-
golang.org/x/tools v0.43.0 // indirect
97+
golang.org/x/sys v0.43.0 // indirect
98+
golang.org/x/text v0.36.0 // indirect
99+
golang.org/x/tools v0.44.0 // indirect
100100
google.golang.org/appengine v1.6.8 // indirect
101101
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 // indirect
102102
google.golang.org/grpc v1.79.3 // indirect

0 commit comments

Comments
 (0)