ghcr-manager 0.9.3 → 0.9.4
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 +12 -0
- package/README.md +9 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.9.4] - 2026-05-21
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- The root action now exposes `summary-json-path` instead of `summary-json`, so command summaries are consumed by file
|
|
15
|
+
path rather than as a large action output payload.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- The GitHub Action now passes cleanup and untag summary JSON between steps by file path instead of large environment
|
|
20
|
+
payloads, avoiding GitHub template-memory and argument-length failures on large cleanup runs.
|
|
21
|
+
|
|
10
22
|
## [0.9.3] - 2026-05-21
|
|
11
23
|
|
|
12
24
|
### Changed
|
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ jobs:
|
|
|
33
33
|
|
|
34
34
|
- name: Preview GHCR cleanup
|
|
35
35
|
id: ghcr-manager
|
|
36
|
-
uses: gh-workflow/ghcr-manager@0.9.
|
|
36
|
+
uses: gh-workflow/ghcr-manager@0.9.4
|
|
37
37
|
with:
|
|
38
38
|
command: cleanup
|
|
39
39
|
token: ${{ github.token }}
|
|
@@ -72,7 +72,7 @@ The action supports three commands:
|
|
|
72
72
|
### Preview cleanup
|
|
73
73
|
|
|
74
74
|
```yaml
|
|
75
|
-
- uses: gh-workflow/ghcr-manager@0.9.
|
|
75
|
+
- uses: gh-workflow/ghcr-manager@0.9.4
|
|
76
76
|
with:
|
|
77
77
|
command: cleanup
|
|
78
78
|
token: ${{ github.token }}
|
|
@@ -93,7 +93,7 @@ The action supports three commands:
|
|
|
93
93
|
### Apply cleanup
|
|
94
94
|
|
|
95
95
|
```yaml
|
|
96
|
-
- uses: gh-workflow/ghcr-manager@0.9.
|
|
96
|
+
- uses: gh-workflow/ghcr-manager@0.9.4
|
|
97
97
|
with:
|
|
98
98
|
command: cleanup
|
|
99
99
|
token: ${{ github.token }}
|
|
@@ -112,7 +112,7 @@ Note: the second scan only runs if cleanup actually makes changes.
|
|
|
112
112
|
### Remove selected tags directly
|
|
113
113
|
|
|
114
114
|
```yaml
|
|
115
|
-
- uses: gh-workflow/ghcr-manager@0.9.
|
|
115
|
+
- uses: gh-workflow/ghcr-manager@0.9.4
|
|
116
116
|
with:
|
|
117
117
|
command: untag
|
|
118
118
|
token: ${{ github.token }}
|
|
@@ -128,7 +128,7 @@ Note: the second scan only runs if cleanup actually makes changes.
|
|
|
128
128
|
### Scan one package
|
|
129
129
|
|
|
130
130
|
```yaml
|
|
131
|
-
- uses: gh-workflow/ghcr-manager@0.9.
|
|
131
|
+
- uses: gh-workflow/ghcr-manager@0.9.4
|
|
132
132
|
with:
|
|
133
133
|
command: scan
|
|
134
134
|
token: ${{ github.token }}
|
|
@@ -177,10 +177,10 @@ Cleanup notes:
|
|
|
177
177
|
|
|
178
178
|
## Outputs
|
|
179
179
|
|
|
180
|
-
| Output
|
|
181
|
-
|
|
|
182
|
-
| `db-path`
|
|
183
|
-
| `summary-json` | Summary JSON for `cleanup` and `untag` |
|
|
180
|
+
| Output | Description |
|
|
181
|
+
| ------------------- | ------------------------------------------------ |
|
|
182
|
+
| `db-path` | SQLite DB path on the runner |
|
|
183
|
+
| `summary-json-path` | Summary JSON file path for `cleanup` and `untag` |
|
|
184
184
|
|
|
185
185
|
## Artifacts
|
|
186
186
|
|