Skip to content

Commit e71930d

Browse files
authored
Merge pull request #161 from squaredup/chore/deps-update
Dependencies Update
2 parents c23d391 + 8124796 commit e71930d

18 files changed

Lines changed: 225 additions & 202 deletions

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
goreleaser:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2121
with:
2222
# Allow goreleaser to access older tag information.
2323
fetch-depth: 0
24-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
24+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
2525
with:
2626
go-version-file: 'go.mod'
2727
cache: true

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88
paths-ignore:
99
- 'README.md'
10-
branches-ignore:
10+
branches-ignore:
1111
- 'dependabot/*'
1212
workflow_dispatch:
1313
schedule:
@@ -24,24 +24,24 @@ jobs:
2424
runs-on: ubuntu-latest
2525
timeout-minutes: 5
2626
steps:
27-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
27+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
28+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
2929
with:
3030
go-version-file: 'go.mod'
3131
cache: true
3232
- run: go mod download
3333
- run: go build -v .
3434
- name: Run linters
35-
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
35+
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
3636
with:
3737
version: latest
3838
args: --timeout=15m
3939

4040
generate:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
44-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
43+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
44+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
4545
with:
4646
go-version-file: 'go.mod'
4747
cache: true
@@ -71,8 +71,8 @@ jobs:
7171
- '1.10.*'
7272
- latest
7373
steps:
74-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
75-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
74+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
75+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
7676
with:
7777
go-version-file: 'go.mod'
7878
cache: true

docs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
33
page_title: "squaredup Provider"
4-
subcategory: ""
54
description: |-
65
Interact with Squaredup
76
---

docs/resources/alerting_channel.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ resource "squaredup_alerting_channel" "slack_api_alert" {
5252

5353
Import is supported using the following syntax:
5454

55+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
56+
5557
```shell
5658
# Alerting Channel can be imported by specifying channel id.
5759
terraform import squaredup_alerting_channel.example channel-123

docs/resources/dashboard.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ EOT
243243

244244
Import is supported using the following syntax:
245245

246+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
247+
246248
```shell
247249
# Dashboards can be imported by specifying dashboard id.
248250
terraform import squaredup_dashboard.example dash-123

docs/resources/dashboard_image.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ resource "squaredup_dashboard_image" "application1_image" {
8585

8686
Import is supported using the following syntax:
8787

88+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
89+
8890
```shell
8991
# Dashboard Image can be imported by specifying the workspace id, dashboard id and the tile id.
9092
terraform import squaredup_dashboard_image.example space-123,dash-123,tile-guid

docs/resources/dashboard_ordering.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ resource "squaredup_dashboard_ordering" "example_ordering" {
161161

162162
Import is supported using the following syntax:
163163

164+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
165+
164166
```shell
165167
# Dashboard Ordering can be imported by specifying the workspace id
166168
terraform import squaredup_dashboard_ordering.example space-123

docs/resources/dashboard_share.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ resource "squaredup_dashboard_share" "sample_dashboard_share" {
8383

8484
Import is supported using the following syntax:
8585

86+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
87+
8688
```shell
8789
# Dashboard share can be imported using the OA ID.
8890
terraform import squaredup_dashboard.example openacc-123

docs/resources/dashboard_variable.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@ EOT
186186

187187
Import is supported using the following syntax:
188188

189+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
190+
189191
```shell
190192
# Dashboard variable can be imported using the variable id.
191193
terraform import squaredup_dashboard_variable.example variable-123

docs/resources/datasource.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ resource "squaredup_datasource" "ado_datasource" {
5555

5656
Import is supported using the following syntax:
5757

58+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
59+
5860
```shell
5961
# Data Source can be imported by specifying datasource id.
6062
terraform import squaredup_datasource.example config-123

0 commit comments

Comments
 (0)