diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 35ab2cc..5566958 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,8 +13,12 @@ updates: interval: "daily" time: "18:00" allow: - # Allow both direct and indirect updates for all packages - - dependency-type: all + # Allow direct updates for packages + - dependency-type: direct + ignore: + - dependency-name: "*" + update-types: + - version-update:semver-patch # a group of dependencies will be updated together in one pull request groups: golang: @@ -22,7 +26,6 @@ updates: update-types: - major - minor - - patch patterns: - "*" diff --git a/.github/workflows/update-libraries-to-commits.yaml b/.github/workflows/update-libraries-to-commits.yaml new file mode 100644 index 0000000..c545ce2 --- /dev/null +++ b/.github/workflows/update-libraries-to-commits.yaml @@ -0,0 +1,18 @@ +# Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 + +# Reusable workflow to perform updates of Dell client libraries to latest commits +name: Dell Libraries Commit Update +on: # yamllint disable-line rule:truthy + workflow_dispatch: + +jobs: + package-update: + uses: dell/common-github-actions/.github/workflows/update-libraries-to-commits.yml@main + name: Dell Libraries Update + secrets: inherit diff --git a/.github/workflows/update-libraries.yaml b/.github/workflows/update-libraries.yaml new file mode 100644 index 0000000..20f871d --- /dev/null +++ b/.github/workflows/update-libraries.yaml @@ -0,0 +1,20 @@ +# Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 + +# Reusable workflow to perform updates of Dell client libraries +name: Dell Libraries Release Update +on: # yamllint disable-line rule:truthy + workflow_dispatch: + repository_dispatch: + types: [latest-released-libraries] + +jobs: + package-update: + uses: dell/common-github-actions/.github/workflows/update-libraries.yml@main + name: Dell Libraries Update + secrets: inherit