ghcr-cleanup-manager 1.1.4 → 1.1.5
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 +3 -3
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.5] - 2026-07-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fixed the root GitHub Action so action-local helper files resolve correctly in other repositories.
|
|
15
|
+
|
|
10
16
|
## [v1.1.4] - 2026-07-02
|
|
11
17
|
|
|
12
18
|
### Fixed
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5
|
|
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.5",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"keywords": [
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"format": "prettier --write .",
|
|
49
49
|
"format:check": "prettier --check .",
|
|
50
50
|
"lint": "npm run check:file-names && npm run check:test-mapping && npm run typecheck && npm run typecheck --workspace visualizer && npm run lint:ts && npm run lint:yaml && npm run lint:markdown && npm run lint --workspace visualizer && npm run format:check",
|
|
51
|
-
"check:file-names": "node tools/
|
|
52
|
-
"check:test-mapping": "node tools/
|
|
51
|
+
"check:file-names": "node tests/tools/check-src-file-names.mjs",
|
|
52
|
+
"check:test-mapping": "node tests/tools/check-test-mapping.mjs",
|
|
53
53
|
"lint:ts": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
54
54
|
"lint:yaml": "eslint \".github/**/*.yml\" \"*.yml\"",
|
|
55
55
|
"lint:markdown": "markdownlint-cli2",
|