-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
383 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,9 @@ jobs: | |
- id: set-matrix | ||
run: echo "matrix=$(jq -c . build_versions.json)" >> $GITHUB_OUTPUT | ||
|
||
build_test_container: | ||
name: 'Build test container' | ||
runs-on: ubuntu-latest | ||
build-x86-container: | ||
name: 'Build x86 CI container' | ||
runs-on: macarne | ||
permissions: | ||
actions: read | ||
contents: read | ||
|
@@ -49,37 +49,66 @@ jobs: | |
RUBYGEM_PUPPET_METADATA=${{ matrix.rubygem_puppet_metadata }} | ||
RUBYGEM_OVERCOMMIT=${{ matrix.rubygem_overcommit }} | ||
RUBYGEM_MODULESYNC=${{ matrix.rubygem_modulesync }} | ||
RUBYGEM_BUNDLER=${{ matrix.rubygem_bundler }} | ||
APK_JQ=${{ matrix.apk_jq }} | ||
APK_YAMLLINT=${{ matrix.apk_yamllint }} | ||
APK_GIT=${{ matrix.apk_git }} | ||
APK_CURL=${{ matrix.apk_curl }} | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
- name: Clone voxpupuli/puppet-example repository | ||
uses: actions/checkout@v4 | ||
with: | ||
username: voxpupulibot | ||
password: ${{ secrets.DOCKERHUB_BOT_PASSWORD }} | ||
repository: voxpupuli/puppet-example | ||
|
||
- name: Analyze container image for CVEs | ||
id: analyze-image-cves | ||
uses: docker/scout-action@v1 | ||
with: | ||
command: cves | ||
image: 'local://ci/voxbox:${{ matrix.rubygem_puppet }}' | ||
sarif-file: sarif.output.${{ matrix.rubygem_puppet }}.${{ github.sha }}.json | ||
write-comment: false | ||
- name: Test container | ||
run: | | ||
# get ids from runner user | ||
RUNNER_UID=$(id -u) | ||
RUNNER_GID=$(id -g) | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile -T | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile lint | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile metadata_lint | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile strings:validate:reference | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile rubocop | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile syntax | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile spec | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile r10k:syntax | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile r10k:dependencies | ||
- name: Compare container image to latest from Registry | ||
id: compare-image | ||
uses: docker/scout-action@v1 | ||
with: | ||
command: compare | ||
image: 'local://ci/voxbox:${{ matrix.rubygem_puppet }}' | ||
to: 'ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-main' | ||
summary: true | ||
keep-previous-comments: true | ||
build-ARM-container: | ||
name: 'Build ARM CI container' | ||
runs-on: hetzner-arm | ||
permissions: | ||
actions: read | ||
contents: read | ||
needs: setup-matrix | ||
strategy: | ||
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Upload SARIF result | ||
id: upload-sarif | ||
uses: github/codeql-action/upload-sarif@v3 | ||
- name: Build image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
sarif_file: sarif.output.${{ matrix.rubygem_puppet }}.${{ github.sha }}.json | ||
tags: 'ci/voxbox:${{ matrix.rubygem_puppet }}' | ||
push: false | ||
platforms: linux/arm64 | ||
build-args: | | ||
BASE_IMAGE=${{ matrix.base_image }} | ||
RUBYGEM_PUPPET=${{ matrix.rubygem_puppet }} | ||
RUBYGEM_FACTER=${{ matrix.facter_version }} | ||
RUBYGEM_VOXPUPULI_TEST=${{ matrix.rubygem_voxpupuli_test }} | ||
RUBYGEM_VOXPUPULI_ACCEPTANCE=${{ matrix.rubygem_voxpupuli_acceptance }} | ||
RUBYGEM_VOXPUPULI_RELEASE=${{ matrix.rubygem_voxpupuli_release }} | ||
RUBYGEM_PUPPET_METADATA=${{ matrix.rubygem_puppet_metadata }} | ||
RUBYGEM_OVERCOMMIT=${{ matrix.rubygem_overcommit }} | ||
RUBYGEM_MODULESYNC=${{ matrix.rubygem_modulesync }} | ||
RUBYGEM_BUNDLER=${{ matrix.rubygem_bundler }} | ||
APK_JQ=${{ matrix.apk_jq }} | ||
APK_YAMLLINT=${{ matrix.apk_yamllint }} | ||
APK_GIT=${{ matrix.apk_git }} | ||
APK_CURL=${{ matrix.apk_curl }} | ||
- name: Clone voxpupuli/puppet-example repository | ||
uses: actions/checkout@v4 | ||
|
@@ -88,20 +117,45 @@ jobs: | |
|
||
- name: Test container | ||
run: | | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile -T | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile lint | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile metadata_lint | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile strings:validate:reference | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile rubocop | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile syntax | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile spec | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile r10k:syntax | ||
docker run --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile r10k:dependencies | ||
# get ids from runner user | ||
RUNNER_UID=$(id -u) | ||
RUNNER_GID=$(id -g) | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile -T | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile lint | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile metadata_lint | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile strings:validate:reference | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile rubocop | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile syntax | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile spec | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile r10k:syntax | ||
docker run --user ${RUNNER_UID}:${RUNNER_GID} --rm -v $(pwd):/repo ci/voxbox:${{ matrix.rubygem_puppet }} -f /Rakefile r10k:dependencies | ||
tests: | ||
needs: | ||
- build_test_container | ||
- build-x86-container | ||
- build-ARM-container | ||
runs-on: ubuntu-latest | ||
name: Test suite | ||
steps: | ||
- run: echo Test suite completed | ||
|
||
dependabot: | ||
permissions: | ||
contents: write | ||
name: 'Dependabot auto-merge' | ||
needs: | ||
- tests | ||
runs-on: ubuntu-latest | ||
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}} | ||
steps: | ||
- name: Dependabot metadata | ||
id: metadata | ||
uses: dependabot/[email protected] | ||
with: | ||
github-token: '${{ secrets.GITHUB_TOKEN }}' | ||
|
||
- name: Enable auto-merge for Dependabot PRs | ||
run: gh pr merge --auto --merge "$PR_URL" | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
--- | ||
name: Security Scanning 🕵️ | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
setup-matrix: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
steps: | ||
- name: Source checkout | ||
uses: actions/checkout@v4 | ||
|
||
- id: set-matrix | ||
run: echo "matrix=$(jq -c . build_versions.json)" >> $GITHUB_OUTPUT | ||
|
||
scan_ci_container: | ||
name: 'Scan CI container' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
needs: setup-matrix | ||
strategy: | ||
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build CI container | ||
uses: docker/build-push-action@v6 | ||
with: | ||
tags: 'ci/voxbox:${{ matrix.rubygem_puppet }}' | ||
push: false | ||
build-args: | | ||
BASE_IMAGE=${{ matrix.base_image }} | ||
RUBYGEM_PUPPET=${{ matrix.rubygem_puppet }} | ||
RUBYGEM_FACTER=${{ matrix.facter_version }} | ||
RUBYGEM_VOXPUPULI_TEST=${{ matrix.rubygem_voxpupuli_test }} | ||
RUBYGEM_VOXPUPULI_ACCEPTANCE=${{ matrix.rubygem_voxpupuli_acceptance }} | ||
RUBYGEM_VOXPUPULI_RELEASE=${{ matrix.rubygem_voxpupuli_release }} | ||
RUBYGEM_PUPPET_METADATA=${{ matrix.rubygem_puppet_metadata }} | ||
RUBYGEM_OVERCOMMIT=${{ matrix.rubygem_overcommit }} | ||
RUBYGEM_MODULESYNC=${{ matrix.rubygem_modulesync }} | ||
RUBYGEM_BUNDLER=${{ matrix.rubygem_bundler }} | ||
APK_JQ=${{ matrix.apk_jq }} | ||
APK_YAMLLINT=${{ matrix.apk_yamllint }} | ||
APK_GIT=${{ matrix.apk_git }} | ||
APK_CURL=${{ matrix.apk_curl }} | ||
- name: Scan image with Anchore Grype | ||
uses: anchore/scan-action@v5 | ||
id: scan | ||
with: | ||
image: 'ci/voxbox:${{ matrix.rubygem_puppet }}' | ||
fail-build: false | ||
|
||
- name: Inspect action SARIF report | ||
run: jq . ${{ steps.scan.outputs.sarif }} | ||
|
||
- name: Upload Anchore scan SARIF report | ||
uses: github/codeql-action/upload-sarif@v3 | ||
with: | ||
sarif_file: ${{ steps.scan.outputs.sarif }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.