Skip to content

Commit 86808c7

Browse files
build(deps): bump the github-actions group across 1 directory with 6 updates (#2124)
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [jidicula/clang-format-action](https://github.com/jidicula/clang-format-action) | `4.14.0` | `4.15.0` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `7` | `8` | | [anchore/sbom-action](https://github.com/anchore/sbom-action) | `0.18.0` | `0.20.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.1` | `4.6.2` | | [ossf/scorecard-action](https://github.com/ossf/scorecard-action) | `2.4.1` | `2.4.2` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.4.0` | `5.4.3` | Updates `jidicula/clang-format-action` from 4.14.0 to 4.15.0 - [Release notes](https://github.com/jidicula/clang-format-action/releases) - [Commits](jidicula/clang-format-action@v4.14.0...v4.15.0) Updates `golangci/golangci-lint-action` from 7 to 8 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v7...v8) Updates `anchore/sbom-action` from 0.18.0 to 0.20.0 - [Release notes](https://github.com/anchore/sbom-action/releases) - [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md) - [Commits](anchore/sbom-action@v0.18.0...v0.20.0) Updates `actions/upload-artifact` from 4.6.1 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.6.1...v4.6.2) Updates `ossf/scorecard-action` from 2.4.1 to 2.4.2 - [Release notes](https://github.com/ossf/scorecard-action/releases) - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md) - [Commits](ossf/scorecard-action@f49aabe...05b42c6) Updates `codecov/codecov-action` from 5.4.0 to 5.4.3 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5.4.0...v5.4.3) --- updated-dependencies: - dependency-name: jidicula/clang-format-action dependency-version: 4.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: anchore/sbom-action dependency-version: 0.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: ossf/scorecard-action dependency-version: 2.4.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 5.4.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9c21c99 commit 86808c7

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/c.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: jidicula/clang-format-action@v4.14.0
14+
- uses: jidicula/clang-format-action@v4.15.0
1515
with:
1616
clang-format-version: "17"
1717
check-path: bpf

.github/workflows/golang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
go-version-file: go.mod
3838
- name: golangci-lint
39-
uses: golangci/golangci-lint-action@v7
39+
uses: golangci/golangci-lint-action@v8
4040
with:
4141
version: v2.1.1
4242

.github/workflows/image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,15 @@ jobs:
107107
push-to-registry: ${{ inputs.pushImage }}
108108

109109
- name: Generate SBOM
110-
uses: anchore/sbom-action@v0.18.0
110+
uses: anchore/sbom-action@v0.20.0
111111
with:
112112
image: quay.io/sustainable_computing_io/${{matrix.IMAGE_NAME}}:${{matrix.LABEL}}
113113
artifact-name: sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.json
114114
output-file: ./sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.spdx.json
115115

116116
- name: save Kepler image SBOM as artifact
117117
if: ${{ inputs.pushImage }}
118-
uses: actions/upload-artifact@v4.6.1
118+
uses: actions/upload-artifact@v4.6.2
119119
with:
120120
name: sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.spdx.json
121121
path: ./sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.spdx.json

.github/workflows/integration_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.FILE_NAME}}
3535
# save kepler image
3636
- name: save Kepler image as artifact
37-
uses: actions/upload-artifact@v4.6.1
37+
uses: actions/upload-artifact@v4.6.2
3838
with:
3939
name: keplerlibbpf
4040
path: ${{env.OUTPUT_DIR}}${{env.FILE_NAME}}
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Save artifacts
104104
if: ${{ failure() }}
105-
uses: actions/upload-artifact@v4.6.1
105+
uses: actions/upload-artifact@v4.6.2
106106
with:
107107
name: artifacts
108108
path: ${{env.ARTIFACT_DIR}}

.github/workflows/platform-validation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.KEPLER_FILE_NAME}}
4545

4646
- name: Save Kepler image as artifact
47-
uses: actions/upload-artifact@v4.6.1
47+
uses: actions/upload-artifact@v4.6.2
4848
with:
4949
name: kepler
5050
path: ${{env.OUTPUT_DIR}}${{env.KEPLER_FILE_NAME}}
@@ -71,7 +71,7 @@ jobs:
7171
IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.VALIDATOR_FILE_NAME}}
7272

7373
- name: Save kepler-validator test image as artifact
74-
uses: actions/upload-artifact@v4.6.1
74+
uses: actions/upload-artifact@v4.6.2
7575
with:
7676
name: validator
7777
path: ${{env.OUTPUT_DIR}}${{env.VALIDATOR_FILE_NAME}}
@@ -171,7 +171,7 @@ jobs:
171171

172172
- name: Save artifacts
173173
if: ${{ failure() }}
174-
uses: actions/upload-artifact@v4.6.1
174+
uses: actions/upload-artifact@v4.6.2
175175
with:
176176
name: artifacts
177177
path: ${{env.ARTIFACT_DIR}}

.github/workflows/rpm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
sudo tar czvf /tmp/kepler.rpm.tar.gz RPMS/
3232
3333
- name: save Kepler image as artifact
34-
uses: actions/upload-artifact@v4.6.1
34+
uses: actions/upload-artifact@v4.6.2
3535
with:
3636
name: kepler_rpm_${{ steps.git_version.outputs.git_version }}
3737
path: /tmp/kepler.rpm.tar.gz

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
persist-credentials: false
3030

3131
- name: Run analysis
32-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
32+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
3333
with:
3434
results_file: scorecard-results.sarif
3535
results_format: sarif
@@ -51,7 +51,7 @@ jobs:
5151
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5252
# format to the repository Actions tab.
5353
- name: Upload artifact
54-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.3.6
54+
uses: actions/upload-artifact@6027e3dd177782cd8ab9af838c04fd81a07f1d47 # v4.3.6
5555
with:
5656
name: SARIF file
5757
path: scorecard-results.sarif

.github/workflows/unit_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
make VERBOSE=1 test
3939
- name: Upload coverage reports to Codecov
40-
uses: codecov/codecov-action@v5.4.0
40+
uses: codecov/codecov-action@v5.4.3
4141
with:
4242
fail_ci_if_error: false # because codecov updates occasionally fail
4343
files: ./coverage.out

0 commit comments

Comments
 (0)