From 0169205086b78b29a363d8b9968184afbb1f2b71 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 20:02:06 +0000 Subject: [PATCH 1/2] Bump a7ul/tar-action from 1.1.3 to 1.2.0 in the all-actions group Bumps the all-actions group with 1 update: [a7ul/tar-action](https://github.com/a7ul/tar-action). Updates `a7ul/tar-action` from 1.1.3 to 1.2.0 - [Release notes](https://github.com/a7ul/tar-action/releases) - [Commits](https://github.com/a7ul/tar-action/compare/v1.1.3...v1.2.0) --- updated-dependencies: - dependency-name: a7ul/tar-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6d5866..67efe13 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -175,7 +175,7 @@ jobs: mkdir release-artifacts cp target/${{ matrix.target }}/release/${{ matrix.lib }} release-artifacts/ - - uses: a7ul/tar-action@v1.1.3 + - uses: a7ul/tar-action@v1.2.0 if: | github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish-binaries == 'true') From efbc3fcfc21e131aaa81940b205d6726e97cf813 Mon Sep 17 00:00:00 2001 From: Rajpal Chauhan Date: Thu, 25 Apr 2024 13:02:53 -0700 Subject: [PATCH 2/2] chore: updating dependabot to support gha and cargo packages Signed-off-by: Rajpal Chauhan --- .github/dependabot.yml | 46 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 42 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cd4692b..f537bb6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,10 +5,48 @@ updates: # Maintain dependencies for GitHub Actions # - Check for updates once a week # - Group all updates into a single PR - - package-ecosystem: github-actions - directory: / + - package-ecosystem: "github-actions" + directory: "/" schedule: - interval: weekly + interval: "weekly" groups: all-actions: - patterns: [ "*" ] \ No newline at end of file + patterns: [ "*" ] + + # Maintain dependencies for Cargo Packages + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + time: "04:00" + timezone: "Canada/Pacific" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] + + # Maintain dependencies for Cargo Packages + - package-ecosystem: "cargo" + directory: "./indy-credx" + schedule: + interval: "weekly" + day: "monday" + time: "04:00" + timezone: "Canada/Pacific" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] + + # Maintain dependencies for Cargo Packages + - package-ecosystem: "cargo" + directory: "./indy-data-types" + schedule: + interval: "weekly" + day: "monday" + time: "04:00" + timezone: "Canada/Pacific" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] + +