ghcr-cleanup-manager 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v1.1.1] - 2026-06-14
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Shortened the root GitHub Action description so it stays under GitHub's marketplace 125-character limit.
|
|
15
|
+
|
|
10
16
|
## [v1.1.0] - 2026-06-14
|
|
11
17
|
|
|
12
18
|
### Changed
|
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ jobs:
|
|
|
41
41
|
|
|
42
42
|
- name: Preview GHCR cleanup
|
|
43
43
|
id: ghcr-cleanup-manager
|
|
44
|
-
uses: ghcr-manager/ghcr-cleanup-manager@v1.1.
|
|
44
|
+
uses: ghcr-manager/ghcr-cleanup-manager@v1.1.1
|
|
45
45
|
with:
|
|
46
46
|
command: cleanup
|
|
47
47
|
token: ${{ github.token }}
|
|
@@ -84,7 +84,7 @@ The action supports two commands:
|
|
|
84
84
|
### Preview cleanup
|
|
85
85
|
|
|
86
86
|
```yaml
|
|
87
|
-
- uses: ghcr-manager/ghcr-cleanup-manager@v1.1.
|
|
87
|
+
- uses: ghcr-manager/ghcr-cleanup-manager@v1.1.1
|
|
88
88
|
with:
|
|
89
89
|
command: cleanup
|
|
90
90
|
token: ${{ github.token }}
|
|
@@ -105,7 +105,7 @@ The action supports two commands:
|
|
|
105
105
|
### Apply cleanup
|
|
106
106
|
|
|
107
107
|
```yaml
|
|
108
|
-
- uses: ghcr-manager/ghcr-cleanup-manager@v1.1.
|
|
108
|
+
- uses: ghcr-manager/ghcr-cleanup-manager@v1.1.1
|
|
109
109
|
with:
|
|
110
110
|
command: cleanup
|
|
111
111
|
token: ${{ github.token }}
|
|
@@ -127,7 +127,7 @@ off `dry-run`.
|
|
|
127
127
|
### Scan one package
|
|
128
128
|
|
|
129
129
|
```yaml
|
|
130
|
-
- uses: ghcr-manager/ghcr-cleanup-manager@v1.1.
|
|
130
|
+
- uses: ghcr-manager/ghcr-cleanup-manager@v1.1.1
|
|
131
131
|
with:
|
|
132
132
|
command: scan
|
|
133
133
|
token: ${{ github.token }}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ghcr-cleanup-manager",
|
|
3
3
|
"description": "GHCR Cleanup Manager: GitHub Action and CLI for safe GitHub Container Registry cleanup and inspection.",
|
|
4
4
|
"homepage": "https://github.com/ghcr-manager/ghcr-cleanup-manager#readme",
|
|
5
|
-
"version": "v1.1.
|
|
5
|
+
"version": "v1.1.1",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"keywords": [
|