-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Actions for dependency updates (#407)
* add actions * update comment * fix linting * fix linting
- Loading branch information
1 parent
657bafc
commit 5737e6d
Showing
3 changed files
with
40 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |