Skip to content

Commit 83291cc

Browse files
committed
upgrade dependencies
1 parent 67e58af commit 83291cc

11 files changed

Lines changed: 39 additions & 40 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"postCreateCommand": "bash .devcontainer/setup.sh",
1313
"features": {
1414
"ghcr.io/devcontainers/features/powershell": {
15-
// renovate: datasource=github-releases depName=PowerShell/PowerShell extractVersion=^v(?<version>7\.4\..+)
16-
"version": "7.4.13"
15+
// renovate: datasource=github-releases depName=PowerShell/PowerShell extractVersion=^v(?<version>7\.6\..+)
16+
"version": "7.6.0"
1717
}
1818
},
1919
"customizations": {

.terraform.lock.hcl

Lines changed: 16 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# syntax=docker.io/docker/dockerfile:1.20
1+
# syntax=docker.io/docker/dockerfile:1.23
22
# shellcheck shell=bash
33

44
# see https://github.com/hashicorp/terraform/releases
55
# renovate: datasource=github-releases depName=hashicorp/terraform
6-
ARG TERRAFORM_VERSION='1.14.4'
6+
ARG TERRAFORM_VERSION='1.14.8'
77

88
# see https://github.com/devcontainers/images/blob/main/src/base-debian/manifest.json
99
# see https://github.com/devcontainers/images/tree/main/src/base-debian/history
10-
FROM mcr.microsoft.com/devcontainers/base:2.1.5-trixie
10+
FROM mcr.microsoft.com/devcontainers/base:2.1.7-trixie
1111

1212
RUN <<'EOF'
1313
#!/usr/bin/bash

ansible.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ EOF
2121
# execute command (e.g. ansible-playbook).
2222
# NB the GITHUB_ prefixed environment variables are used to trigger ansible-lint
2323
# to annotate the GitHub Actions Workflow with the linting violations.
24-
# see https://github.com/ansible/ansible-lint/blob/v26.1.1/src/ansiblelint/app.py#L106-L111
24+
# see https://github.com/ansible/ansible-lint/blob/v26.4.0/src/ansiblelint/app.py#L106-L111
2525
# see https://ansible-lint.readthedocs.io/en/latest/usage/#ci-cd
2626
exec docker run \
2727
--rm \

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# see https://github.com/hashicorp/terraform
22
terraform {
3-
required_version = "1.14.4"
3+
required_version = "1.14.8"
44
required_providers {
55
# see https://registry.terraform.io/providers/hashicorp/random
66
# see https://github.com/hashicorp/terraform-provider-random
@@ -24,7 +24,7 @@ terraform {
2424
# see https://github.com/ansible/terraform-provider-ansible
2525
ansible = {
2626
source = "ansible/ansible"
27-
version = "1.3.0"
27+
version = "1.4.0"
2828
}
2929
}
3030
}

mega-linter.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44
image_name='oxsecurity/megalinter'
55
# see https://hub.docker.com/r/oxsecurity/megalinter/tags
66
# renovate: datasource=docker depName=oxsecurity/megalinter
7-
image_version='9.3.0'
7+
image_version='9.4.0'
88

99
# see https://megalinter.io/latest/configuration/
1010
# see https://megalinter.io/latest/descriptors/powershell/

playbook.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
name: chocolatey
122122
# see https://community.chocolatey.org/packages/chocolatey
123123
# renovate: datasource=nuget:chocolatey depName=chocolatey
124-
version: '2.6.0'
124+
version: '2.7.1'
125125
state: downgrade
126126

127127
- name: Install Notepad3
@@ -139,7 +139,7 @@
139139
name: firefox
140140
# https://community.chocolatey.org/packages/firefox
141141
# renovate: datasource=nuget:chocolatey depName=firefox
142-
version: '147.0.2'
142+
version: '149.0.0'
143143
state: downgrade
144144
package_params: /l:en-US
145145
- name: Install SetDefaultBrowser
@@ -182,7 +182,7 @@
182182
name: git
183183
# https://community.chocolatey.org/packages/git
184184
# renovate: datasource=nuget:chocolatey depName=git
185-
version: '2.52.0'
185+
version: '2.53.0.2'
186186
state: downgrade
187187
package_params: /GitOnlyOnPath /NoAutoCrlf /SChannel
188188
- name: Configure Git

renovate.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ gitea_container_name="$(basename "$(dirname "$(realpath "${BASH_SOURCE[0]}")")")
1313

1414
# see https://hub.docker.com/r/gitea/gitea/tags
1515
# renovate: datasource=docker depName=gitea/gitea
16-
gitea_version='1.25.4'
16+
gitea_version='1.25.5'
1717

1818
# see https://hub.docker.com/r/renovate/renovate/tags
1919
# see https://github.com/renovatebot/renovate/releases
2020
# renovate: datasource=docker depName=renovate/renovate
21-
renovate_version='42.93.1'
21+
renovate_version='43.104.1'
2222

2323
# clean.
2424
echo 'Deleting existing Gitea...'
@@ -30,7 +30,7 @@ install -d tmp
3030
# start gitea in background.
3131
# see https://docs.gitea.io/en-us/config-cheat-sheet/
3232
# see https://github.com/go-gitea/gitea/releases
33-
# see https://github.com/go-gitea/gitea/blob/v1.25.4/docker/root/etc/s6/gitea/setup
33+
# see https://github.com/go-gitea/gitea/blob/v1.25.5/docker/root/etc/s6/gitea/setup
3434
echo 'Starting Gitea...'
3535
docker run \
3636
--detach \

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
ansible-core==2.20.1 # see https://pypi.org/project/ansible-core/
2-
ansible-lint==26.1.1 # see https://pypi.org/project/ansible-lint/
3-
pypsrp[credssp]==0.8.1 # see https://pypi.org/project/pypsrp/
1+
ansible-core==2.20.4 # see https://pypi.org/project/ansible-core/
2+
ansible-lint==26.4.0 # see https://pypi.org/project/ansible-lint/
3+
pypsrp[credssp]==0.9.1 # see https://pypi.org/project/pypsrp/

requirements.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ collections:
44
version: 4.0.0
55
# see https://galaxy.ansible.com/ansible/windows
66
- name: ansible.windows
7-
version: 3.3.0
7+
version: 3.5.0
88
# see https://galaxy.ansible.com/chocolatey/chocolatey
99
- name: chocolatey.chocolatey
10-
version: 1.5.3
10+
version: 1.6.0
1111
# see https://galaxy.ansible.com/community/general
1212
- name: community.general
13-
version: 12.3.0
13+
version: 12.5.0
1414
# see https://galaxy.ansible.com/community/windows
1515
- name: community.windows
1616
version: 3.1.0

0 commit comments

Comments
 (0)