Skip to content

Commit

Permalink
Merge branch 'main' into fix_hosts_file_entry
Browse files Browse the repository at this point in the history
  • Loading branch information
damacus authored Sep 11, 2023
2 parents 2405243 + adb91f6 commit 270a020
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 74 deletions.
10 changes: 0 additions & 10 deletions .circleci/config.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .delivery/project.toml

This file was deleted.

46 changes: 14 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,20 @@ name: ci
"on":
pull_request:
push:
branches:
- main
branches: [main]

jobs:
delivery:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Run Chef Delivery
uses: actionshub/chef-delivery@main
env:
CHEF_LICENSE: accept-no-persist

yamllint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Run yaml Lint
uses: actionshub/yamllint@main

mdl:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Run Markdown Lint
uses: actionshub/markdownlint@main
lint-unit:
uses: sous-chefs/.github/.github/workflows/[email protected]
permissions:
actions: write
checks: write
pull-requests: write
statuses: write
issues: write

integration:
needs: [mdl, yamllint, delivery]
needs: "lint-unit"
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -48,16 +30,16 @@ jobs:
- ubuntu-1804
- ubuntu-2004
suite:
- 'default'
- "default"
fail-fast: false

steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Chef
uses: actionshub/chef-install@main
uses: actionshub/chef-install@2.0.4
- name: Dokken
uses: actionshub/test-kitchen@main
uses: actionshub/test-kitchen@2.1.0
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/md-links.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
close-issue-message: >
Expand Down
4 changes: 4 additions & 0 deletions .markdownlint-cli2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
config:
ul-indent: false # MD007

Check warning on line 2 in .markdownlint-cli2.yaml

View workflow job for this annotation

GitHub Actions / lint-unit / yamllint

2:20 [comments] too few spaces before comment
line-length: false # MD013

Check warning on line 3 in .markdownlint-cli2.yaml

View workflow job for this annotation

GitHub Actions / lint-unit / yamllint

3:22 [comments] too few spaces before comment
no-duplicate-heading/no-duplicate-header: false # MD024

Check warning on line 4 in .markdownlint-cli2.yaml

View workflow job for this annotation

GitHub Actions / lint-unit / yamllint

4:51 [comments] too few spaces before comment
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

This file is used to list changes made in each version of the Dnsmasq cookbooks.

## Unreleased
## 1.1.3 - *2023-04-01*

## 1.1.2 - *2023-03-02*

## 1.1.1 - *2023-02-14*

- Remove delivery folder

- Fix resource name typo and added dependency cookbook for hostsfile_entry (hostsfile)

Expand Down
4 changes: 2 additions & 2 deletions metadata.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name 'dnsmasq'
maintainer 'Sous-Chefs'
maintainer 'Sous Chefs'
maintainer_email '[email protected]'
license 'Apache-2.0'
description 'Installs and configures dnsmasq'

chef_version '>= 15.3'
source_url 'https://github.com/sous-chefs/dnsmasq'
issues_url 'https://github.com/sous-chefs/dnsmasq/issues'
version '1.1.0'
version '1.1.8'

depends 'hostsfile'

Expand Down
17 changes: 17 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"packageRules": [{
"groupName": "Actions",
"matchUpdateTypes": ["patch", "pin", "digest"],
"automerge": true,
"addLabels": ["Release: Patch", "Skip: Announcements"]
},
{
"groupName": "Actions",
"matchUpdateTypes": ["major"],
"automerge": false,
"addLabels": ["Release: Patch", "Skip: Announcements"]
}
]
}

0 comments on commit 270a020

Please sign in to comment.