Skip to content

build(deps): bump the github-actions group across 1 directory with 5 updates #2052

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jidicula/clang-format-action@v4.14.0
- uses: jidicula/clang-format-action@v4.15.0
with:
clang-format-version: "17"
check-path: bpf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
uses: golangci/golangci-lint-action@v8
with:
version: v2.1.1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ jobs:
push-to-registry: ${{ inputs.pushImage }}

- name: Generate SBOM
uses: anchore/sbom-action@v0.18.0
uses: anchore/sbom-action@v0.19.0
with:
image: quay.io/sustainable_computing_io/${{matrix.IMAGE_NAME}}:${{matrix.LABEL}}
artifact-name: sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.json
output-file: ./sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.spdx.json

- name: save Kepler image SBOM as artifact
if: ${{ inputs.pushImage }}
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.spdx.json
path: ./sbom-${{matrix.IMAGE_NAME}}-${{matrix.LABEL}}.spdx.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.FILE_NAME}}
# save kepler image
- name: save Kepler image as artifact
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: keplerlibbpf
path: ${{env.OUTPUT_DIR}}${{env.FILE_NAME}}
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Save artifacts
if: ${{ failure() }}
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: artifacts
path: ${{env.ARTIFACT_DIR}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/platform-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.KEPLER_FILE_NAME}}

- name: Save Kepler image as artifact
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: kepler
path: ${{env.OUTPUT_DIR}}${{env.KEPLER_FILE_NAME}}
Expand All @@ -71,7 +71,7 @@ jobs:
IMAGE_OUTPUT_PATH: ${{env.OUTPUT_DIR}}${{env.VALIDATOR_FILE_NAME}}

- name: Save kepler-validator test image as artifact
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: validator
path: ${{env.OUTPUT_DIR}}${{env.VALIDATOR_FILE_NAME}}
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:

- name: Save artifacts
if: ${{ failure() }}
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: artifacts
path: ${{env.ARTIFACT_DIR}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
sudo tar czvf /tmp/kepler.rpm.tar.gz RPMS/

- name: save Kepler image as artifact
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
name: kepler_rpm_${{ steps.git_version.outputs.git_version }}
path: /tmp/kepler.rpm.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: Upload artifact
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.3.6
uses: actions/upload-artifact@6027e3dd177782cd8ab9af838c04fd81a07f1d47 # v4.3.6
with:
name: SARIF file
path: scorecard-results.sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
make VERBOSE=1 test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected].0
uses: codecov/[email protected].2
with:
fail_ci_if_error: false # because codecov updates occasionally fail
files: ./coverage.out
Expand Down
Loading