Skip to content

Commit f1536a1

Browse files
chore(deps): update maru support dependencies
| datasource | package | from | to | | ----------- | ------------------------------- | ------- | -------- | | github-tags | actions/create-github-app-token | v1.11.1 | v1.11.5 | | github-tags | actions/setup-go | v5.2.0 | v5.3.0 | | github-tags | actions/setup-node | v4.1.0 | v4.2.0 | | github-tags | actions/upload-artifact | v4.6.0 | v4.6.1 | | github-tags | anchore/sbom-action | v0.17.9 | v0.18.0 | | github-tags | github/codeql-action | v3.28.1 | v3.28.10 | | github-tags | goreleaser/goreleaser-action | v6.1.0 | v6.2.1 | | github-tags | ossf/scorecard-action | v2.4.0 | v2.4.1 | | github-tags | zarf-dev/zarf | v0.46.0 | v0.49.0 |
1 parent 5026635 commit f1536a1

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
7+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
88
with:
99
go-version: 1.21.x

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ runs:
55
using: composite
66
steps:
77
# used by goreleaser to create SBOMs
8-
- uses: anchore/sbom-action/download-syft@df80a981bc6edbc4e220a492d3cbe9f5547a6e75 # v0.17.9
8+
- uses: anchore/sbom-action/download-syft@f325610c9f50a54015d37c8d16cb3b0e2c8f4de0 # v0.18.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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
7+
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
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=zarf-dev/zarf
10-
version: v0.46.0
10+
version: v0.49.0

.github/workflows/commitlint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fetch-depth: 0
2222

2323
- name: Setup Node.js
24-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
24+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
2525

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

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
27+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
2828
with:
2929
name: build-artifacts
3030
path: build/
@@ -106,15 +106,15 @@ jobs:
106106
107107
- name: Get Brew tap repo token
108108
id: brew-tap-token
109-
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
109+
uses: actions/create-github-app-token@0d564482f06ca65fa9e77e2510873638c82206f2 # v1.11.5
110110
with:
111111
app-id: ${{ secrets.HOMEBREW_TAP_WORKFLOW_GITHUB_APP_ID }}
112112
private-key: ${{ secrets.HOMEBREW_TAP_WORKFLOW_GITHUB_APP_SECRET }}
113113
owner: defenseunicorns
114114
repositories: homebrew-tap
115115

116116
- name: Run GoReleaser
117-
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
117+
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
118118
with:
119119
distribution: goreleaser
120120
version: latest

.github/workflows/scan-codeql.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: make build-cli-linux-amd
4646

4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
48+
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
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@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
57+
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
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
@@ -26,7 +26,7 @@ jobs:
2626
extra_args: --all-files --verbose # pre-commit run --all-files --verbose
2727

2828
- name: Run Revive Action by pulling pre-built image
29-
uses: docker://morphy/revive-action:v2@sha256:793c4e8bac339d7dcfccb0c35c9dbc623f5b0956515fcce9efd78162c084e8e0
29+
uses: docker://morphy/revive-action:v2@sha256:28eca8b53427f9f1b0c8d44236b057be4bf62c9118c98223285c0558192f0257
3030
with:
3131
config: revive.toml
3232
# Exclude patterns, separated by semicolons (optional)

.github/workflows/scorecard.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
persist-credentials: false
2828

2929
- name: "Run analysis"
30-
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
30+
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
3131
with:
3232
results_file: results.sarif
3333
results_format: sarif
@@ -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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
40+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.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@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
48+
uses: github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
4949
with:
5050
sarif_file: results.sarif

0 commit comments

Comments
 (0)