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"] + + 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')