Skip to content

Commit

Permalink
feat: change to build yaml and add renovate comments
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Waffen <[email protected]>
  • Loading branch information
rwaffen committed Oct 18, 2024
1 parent 4a62e47 commit 9676b52
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 23 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ jobs:
- name: Source checkout
uses: actions/checkout@v4

- name: 'Setup yq'
uses: dcarbone/[email protected]

- id: set-matrix
run: echo "matrix=$(jq -c . build_versions.json)" >> $GITHUB_OUTPUT
run: echo "matrix=$(yq -o json build_versions.yaml | jq -c)" >> $GITHUB_OUTPUT

build-and-push-container:
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
- name: Source checkout
uses: actions/checkout@v4

- name: 'Setup yq'
uses: dcarbone/[email protected]

- id: set-matrix
run: echo "matrix=$(jq -c . build_versions.json)" >> $GITHUB_OUTPUT
run: echo "matrix=$(yq -o json build_versions.yaml | jq -c)" >> $GITHUB_OUTPUT

build_test_container:
name: 'Build test container'
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/security_scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ jobs:
- name: Source checkout
uses: actions/checkout@v4

- name: 'Setup yq'
uses: dcarbone/[email protected]

- id: set-matrix
run: echo "matrix=$(jq -c . build_versions.json)" >> $GITHUB_OUTPUT
run: echo "matrix=$(yq -o json build_versions.yaml | jq -c)" >> $GITHUB_OUTPUT

scan_ci_container:
name: 'Scan CI container'
Expand Down
20 changes: 0 additions & 20 deletions build_versions.json

This file was deleted.

23 changes: 23 additions & 0 deletions build_versions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

include:
- puppet_release: 7
# renovate: datasource=deb depName=puppet-agent
puppet_version: "7.33.0"
# renovate: datasource=deb depName=puppetdb-termini
puppetdb_termini_version: "7.19.1"
terraform_version: "1.9.5"
# renovate: datasource=deb depName=pdk
pdk_version: "3.3.0.0"
# renovate: datasource=deb depName=puppet-bolt
bolt_version: "3.30.0"

- puppet_release: 8
# renovate: datasource=deb depName=puppet-agent
puppet_version: "8.9.0"
# renovate: datasource=deb depName=puppetdb-termini
puppetdb_termini_version: "8.7.0"
terraform_version: "1.9.5"
# renovate: datasource=deb depName=pdk
pdk_version: "3.3.0.0"
# renovate: datasource=deb depName=puppet-bolt
bolt_version: "3.30.0"

0 comments on commit 9676b52

Please sign in to comment.