ghcr-manager 0.9.8 → 0.9.9
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 +7 -0
- package/README.md +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ 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.9] - 2026-05-30
|
|
11
|
+
|
|
12
|
+
No additional user-facing changes were introduced beyond `0.9.8`.
|
|
13
|
+
|
|
14
|
+
This version number exists because a release attempt consumed `0.9.9` on npm.org, so later publishes must continue from
|
|
15
|
+
a newer version.
|
|
16
|
+
|
|
10
17
|
## [0.9.8] - 2026-06-03
|
|
11
18
|
|
|
12
19
|
### Added
|
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
|
|
33
33
|
- name: Preview GHCR cleanup
|
|
34
34
|
id: ghcr-manager
|
|
35
|
-
uses: ghcr-manager/ghcr-manager@0.9.
|
|
35
|
+
uses: ghcr-manager/ghcr-manager@0.9.9
|
|
36
36
|
with:
|
|
37
37
|
command: cleanup
|
|
38
38
|
token: ${{ github.token }}
|
|
@@ -69,7 +69,7 @@ The action supports two commands:
|
|
|
69
69
|
### Preview cleanup
|
|
70
70
|
|
|
71
71
|
```yaml
|
|
72
|
-
- uses: ghcr-manager/ghcr-manager@0.9.
|
|
72
|
+
- uses: ghcr-manager/ghcr-manager@0.9.9
|
|
73
73
|
with:
|
|
74
74
|
command: cleanup
|
|
75
75
|
token: ${{ github.token }}
|
|
@@ -90,7 +90,7 @@ The action supports two commands:
|
|
|
90
90
|
### Apply cleanup
|
|
91
91
|
|
|
92
92
|
```yaml
|
|
93
|
-
- uses: ghcr-manager/ghcr-manager@0.9.
|
|
93
|
+
- uses: ghcr-manager/ghcr-manager@0.9.9
|
|
94
94
|
with:
|
|
95
95
|
command: cleanup
|
|
96
96
|
token: ${{ github.token }}
|
|
@@ -109,7 +109,7 @@ Note: the second scan only runs if cleanup actually makes changes.
|
|
|
109
109
|
### Scan one package
|
|
110
110
|
|
|
111
111
|
```yaml
|
|
112
|
-
- uses: ghcr-manager/ghcr-manager@0.9.
|
|
112
|
+
- uses: ghcr-manager/ghcr-manager@0.9.9
|
|
113
113
|
with:
|
|
114
114
|
command: scan
|
|
115
115
|
token: ${{ github.token }}
|