diff --git a/.github/workflows/acc-test.yaml b/.github/workflows/acc-test.yaml index 286fc133..28b77352 100644 --- a/.github/workflows/acc-test.yaml +++ b/.github/workflows/acc-test.yaml @@ -48,7 +48,7 @@ jobs: - resource_type: TestAccDockerService registry: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/compile.yaml b/.github/workflows/compile.yaml index a450bdab..4107a729 100644 --- a/.github/workflows/compile.yaml +++ b/.github/workflows/compile.yaml @@ -22,7 +22,7 @@ jobs: compile: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index 138fee7b..df1c6027 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -13,7 +13,7 @@ jobs: name: lint runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Go uses: actions/setup-go@v5 with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2fd92a20..1b2a07c1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,7 +25,7 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Unshallow run: git fetch --prune --unshallow - name: Set up Go diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index 973424b7..07104b83 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -19,7 +19,7 @@ jobs: unit-test: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/website-link.yaml b/.github/workflows/website-link.yaml index 3b1b1547..1c5c83ef 100644 --- a/.github/workflows/website-link.yaml +++ b/.github/workflows/website-link.yaml @@ -17,7 +17,7 @@ jobs: markdown-link-check: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: gaurav-nelson/github-action-markdown-link-check@v1 name: markdown-link-check docs/**/*.md with: diff --git a/.github/workflows/website-lint.yaml b/.github/workflows/website-lint.yaml index 8845c714..4471805f 100644 --- a/.github/workflows/website-lint.yaml +++ b/.github/workflows/website-lint.yaml @@ -18,7 +18,7 @@ jobs: website-generation: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} @@ -33,7 +33,7 @@ jobs: website-lint-spellcheck-tffmt: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} @@ -45,7 +45,7 @@ jobs: markdown-lint: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: avto-dev/markdown-lint@v1 with: args: 'docs' diff --git a/docs/data-sources/image.md b/docs/data-sources/image.md index fd40c2b0..1b0cd459 100644 --- a/docs/data-sources/image.md +++ b/docs/data-sources/image.md @@ -45,5 +45,3 @@ data "docker_image" "tag_and_digest" { - `id` (String) The ID of this resource. - `repo_digest` (String) The image sha256 digest in the form of `repo[:tag]@sha256:`. It may be empty in the edge case where the local image was pulled from a repo, tagged locally, and then referred to in the data source by that local name/tag. - - diff --git a/docs/data-sources/logs.md b/docs/data-sources/logs.md index e96091bb..c5e46837 100644 --- a/docs/data-sources/logs.md +++ b/docs/data-sources/logs.md @@ -36,5 +36,3 @@ description: |- - `id` (String) The ID of this resource. - `logs_list_string` (List of String) List of container logs, each element is a line. - - diff --git a/docs/data-sources/network.md b/docs/data-sources/network.md index 9a7c96fc..82f7bc62 100644 --- a/docs/data-sources/network.md +++ b/docs/data-sources/network.md @@ -43,5 +43,3 @@ Read-Only: - `gateway` (String) - `ip_range` (String) - `subnet` (String) - - diff --git a/docs/data-sources/plugin.md b/docs/data-sources/plugin.md index fde4bc9e..8005382f 100644 --- a/docs/data-sources/plugin.md +++ b/docs/data-sources/plugin.md @@ -39,5 +39,3 @@ data "docker_plugin" "by_id" { - `grant_all_permissions` (Boolean) If true, grant all permissions necessary to run the plugin - `name` (String) The plugin name. If the tag is omitted, `:latest` is complemented to the attribute value. - `plugin_reference` (String) The Docker Plugin Reference - - diff --git a/docs/data-sources/registry_image.md b/docs/data-sources/registry_image.md index 1ffc09d8..8be84758 100644 --- a/docs/data-sources/registry_image.md +++ b/docs/data-sources/registry_image.md @@ -38,5 +38,3 @@ resource "docker_image" "ubuntu" { - `id` (String) The ID of this resource. - `sha256_digest` (String) The content digest of the image, as stored in the registry. - - diff --git a/docs/data-sources/registry_image_manifests.md b/docs/data-sources/registry_image_manifests.md index ef455097..c8cc3227 100644 --- a/docs/data-sources/registry_image_manifests.md +++ b/docs/data-sources/registry_image_manifests.md @@ -48,5 +48,3 @@ Read-Only: - `media_type` (String) - `os` (String) - `sha256_digest` (String) - - diff --git a/docs/resources/buildx_builder.md b/docs/resources/buildx_builder.md index f033b2a3..3f46c8f2 100644 --- a/docs/resources/buildx_builder.md +++ b/docs/resources/buildx_builder.md @@ -118,5 +118,3 @@ Optional: - `default_load` (Boolean) Automatically load images to the Docker Engine image store. Defaults to `false` - `key` (String) Sets the TLS client key. - `servername` (String) TLS server name used in requests. - - diff --git a/docs/resources/image.md b/docs/resources/image.md index 2b632d03..a0190a30 100644 --- a/docs/resources/image.md +++ b/docs/resources/image.md @@ -4,7 +4,7 @@ page_title: "Resource docker_image - terraform-provider-docker" subcategory: "" description: |- Manages the lifecycle of a docker image in your docker host. It can be used to build a new docker image or to pull an existing one from a registry. - This resource will not pull new layers of the image automatically unless used in conjunction with dockerregistryimage ../data-sources/registry_image.md data source to update the pull_triggers field. + This resource will not pull new layers of the image automatically unless used in conjunction with docker_registry_image ../data-sources/registry_image.md data source to update the pull_triggers field. --- # Resource (docker_image) diff --git a/docs/resources/service.md b/docs/resources/service.md index 24aa8fa9..7005156a 100644 --- a/docs/resources/service.md +++ b/docs/resources/service.md @@ -4,7 +4,7 @@ page_title: "Resource docker_service - terraform-provider-docker" subcategory: "" description: |- This resource manages the lifecycle of a Docker service. By default, the creation, update and delete of services are detached. - With the Converge Config the behavior of the docker cli is imitated to guarantee tha for example, all tasks of a service are running or successfully updated or to inform terraform that a service could no be updated and was successfully rolled back. + With the Converge Config the behavior of the docker cli is imitated to guarantee tha for example, all tasks of a service are running or successfully updated or to inform terraform that a service could no be updated and was successfully rolled back. --- # Resource (docker_service) diff --git a/docs/resources/tag.md b/docs/resources/tag.md index 7f819100..062dbfbf 100644 --- a/docs/resources/tag.md +++ b/docs/resources/tag.md @@ -28,5 +28,3 @@ Creates a docker tag. It has the exact same functionality as the `docker tag` co - `id` (String) The ID of this resource. - `source_image_id` (String) ImageID of the source image in the format of `sha256:<>` - -