From 37f3ed85d466f3ff2cba5218f9942befae2681b4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 23:56:01 +0000 Subject: [PATCH] chore(deps): update all dependencies | datasource | package | from | to | | ----------- | ------------------------------------------------------------- | ---------- | ----------- | | github-tags | actions/upload-artifact | v4.0.0 | v4.3.1 | | docker | busybox | 1.32 | 1.36.1 | | docker | busybox | 1.32 | 1.36 | | docker | curlimages/curl | 7.76.1 | 8.6.0 | | github-tags | defenseunicorns/uds-common-tasks | v0.2.2 | v0.3.1 | | github-tags | defenseunicorns/zarf | v0.29.1 | v0.32.5 | | docker | ghcr.io/defenseunicorns/packages/uds/dev-postgres | 0.0.1 | 0.0.2 | | github-tags | github/codeql-action | v3.22.12 | v3.24.8 | | github-tags | golangci/golangci-lint | v1.54.1 | v1.56.2 | | github-tags | google-github-actions/release-please-action | v4.0.1 | v4.1.0 | | git-tags | https://repo1.dso.mil/big-bang/product/packages/sonarqube.git | 8.0.3-bb.0 | 9.6.3-bb.25 | | github-tags | pre-commit/pre-commit-hooks | v4.4.0 | v4.5.0 | | github-tags | python-jsonschema/check-jsonschema | 0.24.1 | 0.28.0 | | docker | registry1.dso.mil/ironbank/big-bang/sonarqube-9 | 9.9.3 | 9.9.4 | | github-tags | renovatebot/pre-commit-hooks | 36.43.1 | 37.255.0 | | docker | sonarqube | 9.9.3 | 10.4.1 | --- .github/workflows/commitlint.yaml | 2 +- .github/workflows/scorecard.yaml | 4 ++-- .github/workflows/tag-and-release.yaml | 8 ++++---- .github/workflows/test.yaml | 6 +++--- .pre-commit-config.yaml | 10 +++++----- bundle/uds-bundle.yaml | 2 +- common/zarf.yaml | 2 +- tasks.yaml | 4 ++-- values/registry1-values.yaml | 2 +- values/upstream-values.yaml | 6 +++--- zarf.yaml | 4 ++-- 11 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/commitlint.yaml b/.github/workflows/commitlint.yaml index 54ef3a69..dfe4af25 100644 --- a/.github/workflows/commitlint.yaml +++ b/.github/workflows/commitlint.yaml @@ -8,4 +8,4 @@ on: jobs: validate: name: Validate - uses: defenseunicorns/uds-common/.github/workflows/commitlint.yaml@442bae718050ea9a47254851a45632aabeb13b17 + uses: defenseunicorns/uds-common/.github/workflows/commitlint.yaml@275e839e80667938baf1c1dda0f543261ba57618 diff --git a/.github/workflows/scorecard.yaml b/.github/workflows/scorecard.yaml index f9307bf7..292d3517 100644 --- a/.github/workflows/scorecard.yaml +++ b/.github/workflows/scorecard.yaml @@ -37,7 +37,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: SARIF file path: results.sarif @@ -45,6 +45,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@012739e5082ff0c22ca6d6ab32e07c36df03c4a4 # v3.22.12 + uses: github/codeql-action/upload-sarif@05963f47d870e2cb19a537396c1f668a348c7d8f # v3.24.8 with: sarif_file: results.sarif diff --git a/.github/workflows/tag-and-release.yaml b/.github/workflows/tag-and-release.yaml index 04fd7a16..6d1dc7a6 100644 --- a/.github/workflows/tag-and-release.yaml +++ b/.github/workflows/tag-and-release.yaml @@ -15,7 +15,7 @@ jobs: steps: - name: Create release tag id: tag - uses: google-github-actions/release-please-action@v4.0.1 + uses: google-github-actions/release-please-action@v4.1.0 - id: release-flag run: echo "release_created=${{ steps.tag.outputs.release_created || false }}" >> $GITHUB_OUTPUT @@ -36,13 +36,13 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Environment setup - uses: defenseunicorns/uds-common/.github/actions/setup@442bae718050ea9a47254851a45632aabeb13b17 + uses: defenseunicorns/uds-common/.github/actions/setup@275e839e80667938baf1c1dda0f543261ba57618 with: username: ${{secrets.IRON_BANK_ROBOT_USERNAME}} password: ${{secrets.IRON_BANK_ROBOT_PASSWORD}} - name: Login to GHCR - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3 + uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3 with: registry: ghcr.io username: dummy @@ -53,6 +53,6 @@ jobs: - name: Save logs if: always() - uses: defenseunicorns/uds-common/.github/actions/save-logs@442bae718050ea9a47254851a45632aabeb13b17 + uses: defenseunicorns/uds-common/.github/actions/save-logs@275e839e80667938baf1c1dda0f543261ba57618 with: suffix: ${{ matrix.flavor }}-${{ github.run_id }}-${{ github.run_attempt }} \ No newline at end of file diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ab063c02..92e0b26f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -44,19 +44,19 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Environment setup - uses: defenseunicorns/uds-common/.github/actions/setup@442bae718050ea9a47254851a45632aabeb13b17 + uses: defenseunicorns/uds-common/.github/actions/setup@275e839e80667938baf1c1dda0f543261ba57618 with: username: ${{secrets.IRON_BANK_ROBOT_USERNAME}} password: ${{secrets.IRON_BANK_ROBOT_PASSWORD}} - name: Test - uses: defenseunicorns/uds-common/.github/actions/test@442bae718050ea9a47254851a45632aabeb13b17 + uses: defenseunicorns/uds-common/.github/actions/test@275e839e80667938baf1c1dda0f543261ba57618 with: flavor: ${{ matrix.flavor }} - name: Save logs if: always() - uses: defenseunicorns/uds-common/.github/actions/save-logs@442bae718050ea9a47254851a45632aabeb13b17 + uses: defenseunicorns/uds-common/.github/actions/save-logs@275e839e80667938baf1c1dda0f543261ba57618 with: suffix: ${{ matrix.flavor }}-${{ github.run_id }}-${{ github.run_attempt }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 797bfe32..2904b324 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: check-added-large-files args: ["--maxkb=1024"] @@ -31,7 +31,7 @@ repos: hooks: - id: fix-smartquotes - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.24.1 + rev: 0.28.0 hooks: - id: check-jsonschema name: "Validate Zarf Configs Against Schema" @@ -40,14 +40,14 @@ repos: args: [ "--schemafile", - "https://raw.githubusercontent.com/defenseunicorns/zarf/v0.29.1/zarf.schema.json", + "https://raw.githubusercontent.com/defenseunicorns/zarf/v0.32.5/zarf.schema.json", "--no-cache" ] - repo: https://github.com/golangci/golangci-lint - rev: v1.54.1 + rev: v1.56.2 hooks: - id: golangci-lint - repo: https://github.com/renovatebot/pre-commit-hooks - rev: 36.43.1 + rev: 37.255.0 hooks: - id: renovate-config-validator diff --git a/bundle/uds-bundle.yaml b/bundle/uds-bundle.yaml index 7d51bec9..7aba1002 100644 --- a/bundle/uds-bundle.yaml +++ b/bundle/uds-bundle.yaml @@ -9,7 +9,7 @@ metadata: packages: - name: dev-postgres repository: ghcr.io/defenseunicorns/packages/uds/dev-postgres - ref: 0.0.1 + ref: 0.0.2 - name: dev-secrets path: ../ diff --git a/common/zarf.yaml b/common/zarf.yaml index 0ad1c924..d55bf7ea 100644 --- a/common/zarf.yaml +++ b/common/zarf.yaml @@ -18,6 +18,6 @@ components: # see note in README.md about use of registry1 chart for both flavors url: https://repo1.dso.mil/big-bang/product/packages/sonarqube.git gitPath: chart - version: "8.0.3-bb.0" + version: "9.6.3-bb.25" valuesFiles: - ../values/common-values.yaml diff --git a/tasks.yaml b/tasks.yaml index c887c6cd..bb49b69b 100644 --- a/tasks.yaml +++ b/tasks.yaml @@ -1,8 +1,8 @@ includes: - cleanup: ./tasks/cleanup.yaml - create: ./tasks/create.yaml - - deploy: https://raw.githubusercontent.com/defenseunicorns/uds-common-tasks/v0.2.2/tasks/deploy.yaml - - setup: https://raw.githubusercontent.com/defenseunicorns/uds-common-tasks/v0.2.2/tasks/setup.yaml + - deploy: https://raw.githubusercontent.com/defenseunicorns/uds-common-tasks/v0.3.1/tasks/deploy.yaml + - setup: https://raw.githubusercontent.com/defenseunicorns/uds-common-tasks/v0.3.1/tasks/setup.yaml - test: ./tasks/test.yaml tasks: diff --git a/values/registry1-values.yaml b/values/registry1-values.yaml index 1d39a5af..e38641e2 100644 --- a/values/registry1-values.yaml +++ b/values/registry1-values.yaml @@ -1,6 +1,6 @@ image: repository: registry1.dso.mil/ironbank/big-bang/sonarqube-9 - tag: 9.9.3-community + tag: 9.9.4-community initContainers: image: registry1.dso.mil/ironbank/big-bang/base:2.1.0 diff --git a/values/upstream-values.yaml b/values/upstream-values.yaml index 4194bbec..a6c6ada3 100644 --- a/values/upstream-values.yaml +++ b/values/upstream-values.yaml @@ -1,9 +1,9 @@ image: repository: sonarqube - tag: 9.9.3-community + tag: 10.4.1-community initContainers: - image: busybox:1.32 + image: busybox:1.36 prometheusExporter: - image: curlimages/curl:7.76.1 + image: curlimages/curl:8.6.0 diff --git a/zarf.yaml b/zarf.yaml index 68bac4e5..8f07e435 100644 --- a/zarf.yaml +++ b/zarf.yaml @@ -69,5 +69,5 @@ components: - values/upstream-values.yaml images: - "sonarqube:9.9.3-community" - - "curlimages/curl:7.76.1" - - "busybox:1.32" \ No newline at end of file + - "curlimages/curl:8.6.0" + - "busybox:1.36.1" \ No newline at end of file