ghcr-cleanup-manager 1.1.3 → 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 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
+ ## [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
+
16
+ ## [v1.1.4] - 2026-07-02
17
+
18
+ ### Fixed
19
+
20
+ - Fixed the visualizer README examples to use the real release SQLite filename instead of a broken placeholder.
21
+
10
22
  ## [v1.1.3] - 2026-07-01
11
23
 
12
24
  ### 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.3
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.3
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.3
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.3
130
+ - uses: ghcr-manager/ghcr-cleanup-manager@v1.1.5
131
131
  with:
132
132
  command: scan
133
133
  token: ${{ github.token }}
@@ -218,8 +218,8 @@ The release assets also include one merged SQLite DB from GHCR Cleanup Manager's
218
218
  as a quick visualizer demo and as a compact way to inspect dozens of real cleanup and graph cases.
219
219
 
220
220
  ```sh
221
- curl -LO https://github.com/ghcr-manager/ghcr-cleanup-manager/releases/latest/download/ghcr-cleanup-manager([^/s]*.sqlite)
222
- npx ghcr-cleanup-manager-visualizer --db ./ghcr-cleanup-manager([^/s]*.sqlite)
221
+ curl -LO https://github.com/ghcr-manager/ghcr-cleanup-manager/releases/latest/download/ghcr-cleanup-manager-release-scenarios.sqlite
222
+ npx ghcr-cleanup-manager-visualizer --db ./ghcr-cleanup-manager-release-scenarios.sqlite
223
223
  ```
224
224
 
225
225
  Docker image available:
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.3",
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/tests/check-src-file-names.mjs",
52
- "check:test-mapping": "node tools/tests/check-test-mapping.mjs",
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",