From 5a0efc8b65320fc34d887d8298fea2e2b27b057d Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Thu, 29 Aug 2024 20:07:57 +0000
Subject: [PATCH 1/5] chore(deps): update base digest to e4a1b8a

---
 base | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/base b/base
index 79c325e..e4a1b8a 160000
--- a/base
+++ b/base
@@ -1 +1 @@
-Subproject commit 79c325ecfcd4039dcfd3cdc4ee96768959003c63
+Subproject commit e4a1b8acf9e656f893821bc95ec8f63f4a029863

From 0088d228cb41d9991c7e3409edc9648ed3d29b37 Mon Sep 17 00:00:00 2001
From: Dafydd Jones <dafydd@techneg.it>
Date: Mon, 2 Sep 2024 15:33:05 +0100
Subject: [PATCH 2/5] fix(deps): update pre-commit hook
 python-jsonschema/check-jsonschema to v0.29.2

---
 template/.pre-commit-config.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/template/.pre-commit-config.yaml b/template/.pre-commit-config.yaml
index 068985b..92f421d 100644
--- a/template/.pre-commit-config.yaml
+++ b/template/.pre-commit-config.yaml
@@ -10,7 +10,7 @@ repos:
       - id: check-yaml
         exclude: ^kitchen.yml$
   - repo: https://github.com/python-jsonschema/check-jsonschema
-    rev: 0.28.3
+    rev: 0.29.2
     hooks:
       - id: check-github-workflows
         name: Check GitHub workflows with check-jsonschema

From 99cf09ef88429264b87f8434a3c05003758d9e0d Mon Sep 17 00:00:00 2001
From: Dafydd Jones <dafydd@techneg.it>
Date: Mon, 2 Sep 2024 15:41:13 +0100
Subject: [PATCH 3/5] fix(deps): update actions/checkout action to v4.1.7

---
 template/.github/workflows/libbuild.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/template/.github/workflows/libbuild.yml b/template/.github/workflows/libbuild.yml
index d1ae237..3142864 100644
--- a/template/.github/workflows/libbuild.yml
+++ b/template/.github/workflows/libbuild.yml
@@ -32,7 +32,7 @@ jobs:
       MAKE_VARS: ""
     steps:
       - name: Checkout repository
-        uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
+        uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
       - name: Debug on runner (When re-run with "Enable debug logging" checked)
         if: runner.debug
         uses: mxschmitt/action-tmate@a283f9441d2d96eb62436dc46d7014f5d357ac22 # v3

From 7b3691cf957fffec66ecd9c12319bb7c77d5f3eb Mon Sep 17 00:00:00 2001
From: Dafydd Jones <dafydd@techneg.it>
Date: Mon, 2 Sep 2024 15:41:35 +0100
Subject: [PATCH 4/5] fix(deps): update dependency chef/chef-workstation to
 v24.4.1064

---
 template/.github/workflows/libbuild.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/template/.github/workflows/libbuild.yml b/template/.github/workflows/libbuild.yml
index 3142864..35ee05f 100644
--- a/template/.github/workflows/libbuild.yml
+++ b/template/.github/workflows/libbuild.yml
@@ -45,6 +45,10 @@ jobs:
         run: |
           kernel_name=$(uname -s)
           if [ "$kernel_name" == "Linux" ]; then
+            wget -O- https://apt.releases.hashicorp.com/gpg \
+              | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
+            echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" \
+              | sudo tee /etc/apt/sources.list.d/hashicorp.list
             sudo apt update
             sudo apt --yes install vagrant $TECHNEG_VAGRANT_PROVIDER
           elif [ "$kernel_name" == "Darwin" ]; then
@@ -72,7 +76,7 @@ jobs:
         uses: actionshub/chef-install@d41f8dde8642d5cd05abefa333fbf2784cff830c # 3.0.0
         env:
           # renovate: datasource=github-tags depName=chef/chef-workstation
-          CHEF_WS_VERSION: 24.2.1058
+          CHEF_WS_VERSION: 24.4.1064
         with:
           project: chef-workstation
           version: ${{ env.CHEF_WS_VERSION }}

From 654693ec104fff40c1928a6fa8b288bb15ad73b2 Mon Sep 17 00:00:00 2001
From: Dafydd Jones <dafydd@techneg.it>
Date: Mon, 2 Sep 2024 15:41:56 +0100
Subject: [PATCH 5/5] test: approve new changes

---
 test/SetBoxName/libbuild_yml.tt    | 8 ++++++--
 test/SetBoxName/pre-commit_yaml.tt | 2 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/test/SetBoxName/libbuild_yml.tt b/test/SetBoxName/libbuild_yml.tt
index d1ae237..35ee05f 100644
--- a/test/SetBoxName/libbuild_yml.tt
+++ b/test/SetBoxName/libbuild_yml.tt
@@ -32,7 +32,7 @@ jobs:
       MAKE_VARS: ""
     steps:
       - name: Checkout repository
-        uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
+        uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
       - name: Debug on runner (When re-run with "Enable debug logging" checked)
         if: runner.debug
         uses: mxschmitt/action-tmate@a283f9441d2d96eb62436dc46d7014f5d357ac22 # v3
@@ -45,6 +45,10 @@ jobs:
         run: |
           kernel_name=$(uname -s)
           if [ "$kernel_name" == "Linux" ]; then
+            wget -O- https://apt.releases.hashicorp.com/gpg \
+              | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
+            echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" \
+              | sudo tee /etc/apt/sources.list.d/hashicorp.list
             sudo apt update
             sudo apt --yes install vagrant $TECHNEG_VAGRANT_PROVIDER
           elif [ "$kernel_name" == "Darwin" ]; then
@@ -72,7 +76,7 @@ jobs:
         uses: actionshub/chef-install@d41f8dde8642d5cd05abefa333fbf2784cff830c # 3.0.0
         env:
           # renovate: datasource=github-tags depName=chef/chef-workstation
-          CHEF_WS_VERSION: 24.2.1058
+          CHEF_WS_VERSION: 24.4.1064
         with:
           project: chef-workstation
           version: ${{ env.CHEF_WS_VERSION }}
diff --git a/test/SetBoxName/pre-commit_yaml.tt b/test/SetBoxName/pre-commit_yaml.tt
index 068985b..92f421d 100644
--- a/test/SetBoxName/pre-commit_yaml.tt
+++ b/test/SetBoxName/pre-commit_yaml.tt
@@ -10,7 +10,7 @@ repos:
       - id: check-yaml
         exclude: ^kitchen.yml$
   - repo: https://github.com/python-jsonschema/check-jsonschema
-    rev: 0.28.3
+    rev: 0.29.2
     hooks:
       - id: check-github-workflows
         name: Check GitHub workflows with check-jsonschema