Skip to content

Commit 0cbc420

Browse files
fix(deps): update all non-major dependencies
1 parent 00b3d76 commit 0cbc420

File tree

24 files changed

+121
-107
lines changed

24 files changed

+121
-107
lines changed

.github/actions/install-tools/action.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: "Install pipeline tools"
44
runs:
55
using: composite
66
steps:
7-
- uses: sigstore/cosign-installer@9614fae9e5c5eddabb09f90a270fcb487c9f7149 # v3.3.0
7+
- uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 # v3.4.0
88

9-
- uses: anchore/sbom-action/download-syft@5ecf649a417b8ae17dc8383dc32d46c03f2312df # v0.15.1
9+
- uses: anchore/sbom-action/download-syft@b6a39da80722a2cb0ef5d197531764a89b5d48c3 # v0.15.8
1010

1111
- run: "curl -sSfL https://raw.githubusercontent.com/anchore/grype/main/install.sh | sh -s -- -b /usr/local/bin --tag v0.64.2"
1212
shell: bash

.github/actions/save-logs/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
sudo chown $USER /tmp/zarf-*.log || echo ""
1616
shell: bash
1717

18-
- uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
18+
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
1919
with:
2020
name: debug-log${{ inputs.suffix }}
2121
path: /tmp/zarf-*.log

.github/actions/slack/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
runs:
1010
using: composite
1111
steps:
12-
- uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 #v1.24.0
12+
- uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001 # v1.25.0
1313
with:
1414
payload: |
1515
{

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
# Upload the contents of the build directory for later stages to use
7474
- name: Upload build artifacts
75-
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
75+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
7676
with:
7777
name: build-artifacts
7878
path: build/
@@ -89,7 +89,7 @@ jobs:
8989
fetch-depth: 0
9090

9191
- name: Download build artifacts
92-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
92+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
9393
with:
9494
name: build-artifacts
9595
path: build/
@@ -133,7 +133,7 @@ jobs:
133133
uses: ./.github/actions/install-tools
134134

135135
- name: Download build artifacts
136-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
136+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
137137
with:
138138
name: build-artifacts
139139
path: build/
@@ -179,7 +179,7 @@ jobs:
179179

180180

181181
- name: Save CVE report
182-
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
182+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
183183
with:
184184
name: cve-report
185185
path: build/zarf-known-cves.csv

.github/workflows/scan-codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@012739e5082ff0c22ca6d6ab32e07c36df03c4a4 # v3.22.12
46+
uses: github/codeql-action/init@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
4747
env:
4848
CODEQL_EXTRACTOR_GO_BUILD_TRACING: on
4949
with:
@@ -54,6 +54,6 @@ jobs:
5454
run: make build-cli-linux-amd
5555

5656
- name: Perform CodeQL Analysis
57-
uses: github/codeql-action/analyze@012739e5082ff0c22ca6d6ab32e07c36df03c4a4 # v3.22.12
57+
uses: github/codeql-action/analyze@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
5858
with:
5959
category: "/language:${{matrix.language}}"

.github/workflows/scorecard.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
3838
# format to the repository Actions tab.
3939
- name: "Upload artifact"
40-
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
40+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
4141
with:
4242
name: SARIF file
4343
path: results.sarif
4444
retention-days: 5
4545

4646
# Upload the results to GitHub's code scanning dashboard.
4747
- name: "Upload to code-scanning"
48-
uses: github/codeql-action/upload-sarif@012739e5082ff0c22ca6d6ab32e07c36df03c4a4 # v3.22.12
48+
uses: github/codeql-action/upload-sarif@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
4949
with:
5050
sarif_file: results.sarif

.github/workflows/test-bigbang.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
# Upload the contents of the build directory for later stages to use
5555
- name: Upload build artifacts
56-
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
56+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
5757
with:
5858
name: build-artifacts
5959
path: build/
@@ -67,7 +67,7 @@ jobs:
6767
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
6868

6969
- name: Download build artifacts
70-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
70+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
7171
with:
7272
name: build-artifacts
7373
path: build/

.github/workflows/test-e2e.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
# Upload the contents of the build directory for later stages to use
3939
- name: Upload build artifacts
40-
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
40+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
4141
with:
4242
name: build-artifacts
4343
path: build/
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5252

5353
- name: Download build artifacts
54-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
54+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
5555
with:
5656
name: build-artifacts
5757
path: build/
@@ -86,7 +86,7 @@ jobs:
8686
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
8787

8888
- name: Download build artifacts
89-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
89+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
9090
with:
9191
name: build-artifacts
9292
path: build/
@@ -124,7 +124,7 @@ jobs:
124124
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
125125

126126
- name: Download build artifacts
127-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
127+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
128128
with:
129129
name: build-artifacts
130130
path: build/
@@ -162,7 +162,7 @@ jobs:
162162
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
163163

164164
- name: Download build artifacts
165-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
165+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
166166
with:
167167
name: build-artifacts
168168
path: build/
@@ -202,7 +202,7 @@ jobs:
202202
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
203203

204204
- name: Download build artifacts
205-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
205+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
206206
with:
207207
name: build-artifacts
208208
path: build/

.github/workflows/test-upgrade.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
# Upload the contents of the build directory for later stages to use
3838
- name: Upload build artifacts
39-
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
39+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
4040
with:
4141
name: build-artifacts
4242
path: build/
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5151

5252
- name: Download build artifacts
53-
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
53+
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
5454
with:
5555
name: build-artifacts
5656
path: build/

docs-website/package-lock.json

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs-website/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"@docusaurus/core": "2.4.3",
2020
"@docusaurus/preset-classic": "2.4.3",
2121
"@docusaurus/theme-mermaid": "2.4.3",
22-
"@easyops-cn/docusaurus-search-local": "^0.38.0",
23-
"prism-react-renderer": "2.3.0",
22+
"@easyops-cn/docusaurus-search-local": "^0.40.0",
23+
"prism-react-renderer": "2.3.1",
2424
"custom-loaders": "file:plugins/custom-loaders"
2525
},
2626
"devDependencies": {

examples/argocd/zarf.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ components:
88
required: true
99
charts:
1010
- name: argo-cd
11-
version: 5.46.5
11+
version: 5.53.14
1212
namespace: argocd
1313
url: https://argoproj.github.io/argo-helm
1414
releaseName: argocd-baseline
@@ -21,7 +21,7 @@ components:
2121
required: true
2222
charts:
2323
- name: argocd-apps
24-
version: 1.4.1
24+
version: 1.6.1
2525
namespace: podinfo
2626
url: https://argoproj.github.io/argo-helm
2727
releaseName: argocd-apps

examples/big-bang/yolo/zarf.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: yolo-big-bang
55
description: Deploy Big Bang Core in YOLO mode
66
# renovate: datasource=gitlab-releases depName=big-bang/bigbang versioning=semver registryUrl=https://repo1.dso.mil/
7-
version: 2.16.0
7+
version: 2.19.2
88
url: https://p1.dso.mil/products/big-bang
99
architecture: amd64
1010
yolo: true
@@ -33,7 +33,7 @@ components:
3333
extensions:
3434
bigbang:
3535
# renovate: datasource=gitlab-releases depName=big-bang/bigbang versioning=semver registryUrl=https://repo1.dso.mil/
36-
version: 2.16.0
36+
version: 2.19.2
3737
valuesFiles:
3838
- credentials.yaml
3939
- ../config/ingress.yaml

examples/big-bang/zarf.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ metadata:
33
name: big-bang-example
44
description: Deploy Big Bang Core
55
# renovate: datasource=gitlab-releases depName=big-bang/bigbang versioning=semver registryUrl=https://repo1.dso.mil/
6-
version: 2.16.0
6+
version: 2.19.2
77
url: https://p1.dso.mil/products/big-bang
88
# Big Bang / Iron Bank are only amd64
99
architecture: amd64
@@ -44,7 +44,7 @@ components:
4444
extensions:
4545
bigbang:
4646
# renovate: datasource=gitlab-releases depName=big-bang/bigbang versioning=semver registryUrl=https://repo1.dso.mil/
47-
version: 2.16.0
47+
version: 2.19.2
4848
valuesFiles:
4949
# Istio configs
5050
- config/ingress.yaml

examples/helm-charts/chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ backends: []
88

99
image:
1010
repository: ghcr.io/stefanprodan/podinfo
11-
tag: 6.4.0
11+
tag: 6.5.4
1212
pullPolicy: IfNotPresent
1313

1414
ui:

examples/longhorn/zarf.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ components:
4141
charts:
4242
- name: longhorn
4343
url: https://charts.longhorn.io
44-
version: 1.4.0
44+
version: 1.6.0
4545
namespace: longhorn-system
4646
valuesFiles:
4747
- values.yaml

examples/variables/simple-terraform.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
required_providers {
99
aws = {
1010
source = "hashicorp/aws"
11-
version = "~> 5.30.0"
11+
version = "~> 5.35.0"
1212
}
1313
}
1414
}

0 commit comments

Comments
 (0)