ghcr-manager 1.0.0 → 1.0.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.0.1] - 2026-06-05
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- The GitHub release job now grants correct permissions.
|
|
15
|
+
|
|
10
16
|
## [v1.0.0] - 2026-06-05
|
|
11
17
|
|
|
12
18
|
`v1.0.0` is the first stable `v1.x` release of `ghcr-manager`.
|
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
|
|
39
39
|
- name: Preview GHCR cleanup
|
|
40
40
|
id: ghcr-manager
|
|
41
|
-
uses: ghcr-manager/ghcr-manager@v1.0.
|
|
41
|
+
uses: ghcr-manager/ghcr-manager@v1.0.1
|
|
42
42
|
with:
|
|
43
43
|
command: cleanup
|
|
44
44
|
token: ${{ github.token }}
|
|
@@ -81,7 +81,7 @@ The action supports two commands:
|
|
|
81
81
|
### Preview cleanup
|
|
82
82
|
|
|
83
83
|
```yaml
|
|
84
|
-
- uses: ghcr-manager/ghcr-manager@v1.0.
|
|
84
|
+
- uses: ghcr-manager/ghcr-manager@v1.0.1
|
|
85
85
|
with:
|
|
86
86
|
command: cleanup
|
|
87
87
|
token: ${{ github.token }}
|
|
@@ -102,7 +102,7 @@ The action supports two commands:
|
|
|
102
102
|
### Apply cleanup
|
|
103
103
|
|
|
104
104
|
```yaml
|
|
105
|
-
- uses: ghcr-manager/ghcr-manager@v1.0.
|
|
105
|
+
- uses: ghcr-manager/ghcr-manager@v1.0.1
|
|
106
106
|
with:
|
|
107
107
|
command: cleanup
|
|
108
108
|
token: ${{ github.token }}
|
|
@@ -124,7 +124,7 @@ off `dry-run`.
|
|
|
124
124
|
### Scan one package
|
|
125
125
|
|
|
126
126
|
```yaml
|
|
127
|
-
- uses: ghcr-manager/ghcr-manager@v1.0.
|
|
127
|
+
- uses: ghcr-manager/ghcr-manager@v1.0.1
|
|
128
128
|
with:
|
|
129
129
|
command: scan
|
|
130
130
|
token: ${{ github.token }}
|