-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): pin actions/delete-package-versions action to e5bc658
- Loading branch information
1 parent
40d34cb
commit 0a8b7b0
Showing
2 changed files
with
6 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,19 +13,19 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Delete untagged dev-cache packages | ||
uses: actions/[email protected] | ||
uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5.0.0 | ||
with: | ||
package-name: "ss-python/dev-cache" | ||
package-type: "container" | ||
delete-only-untagged-versions: "true" | ||
- name: Delete untagged development packages | ||
uses: actions/[email protected] | ||
uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5.0.0 | ||
with: | ||
package-name: "ss-python/dev" | ||
package-type: "container" | ||
delete-only-untagged-versions: "true" | ||
- name: Delete untagged production packages | ||
uses: actions/[email protected] | ||
uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5.0.0 | ||
with: | ||
package-name: "ss-python" | ||
package-type: "container" | ||
|
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 |
---|---|---|
|
@@ -13,19 +13,19 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Delete untagged dev-cache packages | ||
uses: actions/[email protected] | ||
uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5.0.0 | ||
with: | ||
package-name: "{{ repo_name }}/dev-cache" | ||
package-type: "container" | ||
delete-only-untagged-versions: "true" | ||
- name: Delete untagged development packages | ||
uses: actions/[email protected] | ||
uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5.0.0 | ||
with: | ||
package-name: "{{ repo_name }}/dev" | ||
package-type: "container" | ||
delete-only-untagged-versions: "true" | ||
- name: Delete untagged production packages | ||
uses: actions/[email protected] | ||
uses: actions/delete-package-versions@e5bc658cc4c965c472efe991f8beea3981499c55 # v5.0.0 | ||
with: | ||
package-name: "{{ repo_name }}" | ||
package-type: "container" | ||
|