From e71e4913d72f14920b888f3d11c5cc7cd2630a9e Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Sat, 20 Jan 2024 20:01:00 -0500 Subject: [PATCH 1/2] add dependabot for github actions (#407) --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..b4f368c66 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +# Dependabot configuration +# ref: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From c538a67f1e3d7d50ad6397ad048baaff6243e4a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 01:09:41 +0000 Subject: [PATCH 2/2] Bump actions/upload-artifact from 1 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 1 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v1...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/c-linter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c-linter.yml b/.github/workflows/c-linter.yml index 3393104b8..d47730e3c 100644 --- a/.github/workflows/c-linter.yml +++ b/.github/workflows/c-linter.yml @@ -33,13 +33,13 @@ jobs: config_file: ${GITHUB_WORKSPACE}/.clang-tidy - name: Archive clang tidy report - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: clang-tidy-report path: clang-tidy-report.txt - name: Archive cppcheck report - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: cppcheck-report path: cppcheck-report.txt \ No newline at end of file