Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
| datasource  | package                                                              | from                 | to                  |
| ----------- | -------------------------------------------------------------------- | -------------------- | ------------------- |
| github-tags | actions/checkout                                                     | v4.1.1               | v4.2.2              |
| github-tags | actions/setup-node                                                   | v4.0.0               | v4.1.0              |
| github-tags | actions/upload-artifact                                              | v3.1.3               | v4.4.3              |
| github-tags | defenseunicorns/zarf                                                 | v0.32.1              | v0.44.0             |
| docker      | docker.io/bitnami/postgresql                                         | 15.3.0-debian-11-r24 | 17.2.0-debian-12-r2 |
| docker      | docker.io/bitnami/redis                                              | 7.0.12-debian-11-r2  | 7.4.1-debian-12-r2  |
| github-tags | golangci/golangci-lint                                               | v1.52.3              | v1.62.2             |
| github-tags | google-github-actions/release-please-action                          | v4.0.1               | v4.1.1              |
| helm        | minio                                                                | 5.0.13               | 5.3.0               |
| helm        | postgresql                                                           | 12.6.6               | 16.2.5              |
| github-tags | pre-commit/pre-commit-hooks                                          | v4.4.0               | v5.0.0              |
| github-tags | python-jsonschema/check-jsonschema                                   | 0.24.0               | 0.30.0              |
| docker      | registry.gitlab.com/gitlab-org/gitlab-runner                         | alpine-v16.8.0       | v17.6.0             |
| docker      | registry1.dso.mil/ironbank/gitlab/gitlab-runner/gitlab-runner        | v16.8.0              | v17.3.1             |
| docker      | registry1.dso.mil/ironbank/gitlab/gitlab-runner/gitlab-runner-helper | v16.8.0              | v17.3.1             |
| docker      | registry1.dso.mil/ironbank/redhat/ubi/ubi9                           | 9.3                  | 9.5                 |
| github-tags | renovatebot/pre-commit-hooks                                         | 36.40.0              | 39.50.0             |
  • Loading branch information
renovate[bot] authored Dec 5, 2024
1 parent 5a35a55 commit 826d067
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/actions/save-logs/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
sudo chown $USER /tmp/uds-*.log || echo ""
shell: bash

- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: debug-log
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
uses: defenseunicorns/setup-zarf@main
with:
# renovate: datasource=github-tags depName=defenseunicorns/zarf versioning=semver
version: v0.32.1
version: v0.44.0
download-init-package: true

- name: Install k3d
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0

- name: Install commitlint
run: npm install --save-dev @commitlint/{config-conventional,cli}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
- id: release-flag
run: echo "release_created=${{ steps.tag.outputs.release_created || false }}" >> $GITHUB_OUTPUT

Expand All @@ -30,7 +30,7 @@ jobs:
packages: write

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Environment setup
uses: ./.github/actions/setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Environment setup
uses: ./.github/actions/setup
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: check-added-large-files
args: ["--maxkb=1024"]
Expand Down Expand Up @@ -31,7 +31,7 @@ repos:
hooks:
- id: fix-smartquotes
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.24.0
rev: 0.30.0
hooks:
- id: check-jsonschema
name: "Validate Zarf Configs Against Schema"
Expand All @@ -44,10 +44,10 @@ repos:
"--no-cache"
]
- repo: https://github.com/golangci/golangci-lint
rev: v1.52.3
rev: v1.62.2
hooks:
- id: golangci-lint
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 36.40.0
rev: 39.50.0
hooks:
- id: renovate-config-validator
2 changes: 1 addition & 1 deletion src/minio/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ components:
required: true
charts:
- name: minio
version: 5.0.13
version: 5.3.0
namespace: dev-minio
url: https://charts.min.io/
valuesFiles:
Expand Down
4 changes: 2 additions & 2 deletions src/postgres/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ components:
required: true
charts:
- name: postgresql
version: 12.6.6
version: 16.2.5
namespace: dev-postgres
url: https://charts.bitnami.com/bitnami
valuesFiles:
- "values.yaml"
images:
- docker.io/bitnami/postgresql:15.3.0-debian-11-r24
- docker.io/bitnami/postgresql:17.2.0-debian-12-r2
actions:
onDeploy:
after:
Expand Down
2 changes: 1 addition & 1 deletion src/redis/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ components:
valuesFiles:
- "values.yaml"
images:
- docker.io/bitnami/redis:7.0.12-debian-11-r2
- docker.io/bitnami/redis:7.4.1-debian-12-r2
actions:
onDeploy:
after:
Expand Down
10 changes: 5 additions & 5 deletions zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ components:
valuesFiles:
- values/registry1-values.yaml
images:
- "registry1.dso.mil/ironbank/gitlab/gitlab-runner/gitlab-runner:v16.8.0"
- "registry1.dso.mil/ironbank/gitlab/gitlab-runner/gitlab-runner-helper:v16.8.0"
- "registry1.dso.mil/ironbank/redhat/ubi/ubi9:9.3"
- "registry1.dso.mil/ironbank/gitlab/gitlab-runner/gitlab-runner:v17.3.1"
- "registry1.dso.mil/ironbank/gitlab/gitlab-runner/gitlab-runner-helper:v17.3.1"
- "registry1.dso.mil/ironbank/redhat/ubi/ubi9:9.5"

- name: gitlab-runner
required: true
Expand All @@ -69,6 +69,6 @@ components:
valuesFiles:
- values/upstream-values.yaml
images:
- "registry.gitlab.com/gitlab-org/gitlab-runner:alpine-v16.8.0"
- "registry.gitlab.com/gitlab-org/gitlab-runner:v17.6.0"
- "library/alpine:latest"
- "registry1.dso.mil/ironbank/gitlab/gitlab-runner/gitlab-runner-helper:v16.8.0"
- "registry1.dso.mil/ironbank/gitlab/gitlab-runner/gitlab-runner-helper:v17.3.1"

0 comments on commit 826d067

Please sign in to comment.