Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v2.0.7
_commit: v2.0.9
_src_path: https://github.com/dafyddj/copier-packer-build
box_name: techneg/win81x64-pro-salt
25 changes: 2 additions & 23 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,28 +1,7 @@
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
enabledManagers: [
'copier',
'git-submodules',
],
extends: [
'config:recommended',
],
automergeStrategy: 'merge-commit',
'git-submodules': {
'enabled': true
},
packageRules: [
{
matchFileNames: [
'template/**'
],
semanticCommitType: 'fix',
},
{
automerge: true,
matchManagers: [
'git-submodules'
],
},
'github>techneg-it/.github',
'github>techneg-it/.github:copier',
],
}
11 changes: 7 additions & 4 deletions .github/workflows/libbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
MAKE_VARS: ""
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Debug on runner (When re-run with "Enable debug logging" checked)
if: runner.debug
uses: mxschmitt/action-tmate@e5c7151931ca95bad1c6f4190c730ecf8c7dde48 # v3.19
uses: mxschmitt/action-tmate@c0afd6f790e3a5564914980036ebf83216678101 # v3.23
with:
detached: true
- name: Install virtualisation software
Expand Down Expand Up @@ -63,6 +63,9 @@ jobs:
kernel_name=$(uname -s)
if [ "$kernel_name" == "Linux" ]; then
echo PKR_VAR_accelerator=kvm >> $GITHUB_ENV
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
elif [ "$kernel_name" == "Darwin" ]; then
: # No action needed for Darwin
fi
Expand All @@ -77,10 +80,10 @@ jobs:
run: vagrant plugin install vagrant-qemu
- name: Install Test Kitchen
if: ${{ !startsWith(runner.name, 'self') }}
uses: actionshub/chef-install@776a917c09d87c381d1d5342f83cd554223fa49c # 3.0.1
uses: actionshub/chef-install@998ca15464a2bafdc36d3970cffc0e32823b179d # 5.0.2
env:
# renovate: datasource=custom.omnitruck depName=chef-workstation
CHEF_WS_VERSION: 25.5.1084
CHEF_WS_VERSION: 25.13.7
with:
project: chef-workstation
version: ${{ env.CHEF_WS_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-merge-conflict
args: [--assume-in-merge]
- id: check-yaml
exclude: ^kitchen.yml$
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.33.2
rev: 0.37.1
hooks:
- id: check-github-workflows
name: Check GitHub workflows with check-jsonschema
Expand Down
Loading