chore(deps): update actions/checkout action to v5 (#768)

* chore(deps): update actions/checkout action to v5

* chore: Update docs

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Martin Wentzel <nitram.wentzel@gmail.com>
This commit is contained in:
renovate[bot] 2025-08-12 16:29:43 +02:00 committed by GitHub
parent c26b4449ce
commit c33013cf0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 11 additions and 27 deletions

View file

@ -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 }}

View file

@ -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 }}

View file

@ -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:

View file

@ -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

View file

@ -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 }}

View file

@ -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:

View file

@ -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'

View file

@ -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:<hash>`. 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.

View file

@ -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.

View file

@ -43,5 +43,3 @@ Read-Only:
- `gateway` (String)
- `ip_range` (String)
- `subnet` (String)

View file

@ -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

View file

@ -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.

View file

@ -48,5 +48,3 @@ Read-Only:
- `media_type` (String)
- `os` (String)
- `sha256_digest` (String)

View file

@ -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.

View file

@ -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.
---
<!-- Bug: Type and Name are switched -->
# Resource (docker_image)

View file

@ -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.
---
<!-- Bug: Type and Name are switched -->
# Resource (docker_service)

View file

@ -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:<<ID>>`