ghcr-manager 0.9.0 → 0.9.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 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
+ ## [0.9.1] - 2026-05-21
11
+
12
+ ### Fixed
13
+
14
+ - The GitHub Action now installs, builds, and runs from its own checkout path instead of the caller repository path.
15
+
10
16
  ## [0.9.0] - 2026-05-21
11
17
 
12
18
  `0.9.0` is the first stable pre-`1.0` release of `ghcr-manager`.
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.0
36
+ uses: gh-workflow/ghcr-manager@0.9.1
37
37
  with:
38
38
  command: cleanup
39
39
  github-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.0
75
+ - uses: gh-workflow/ghcr-manager@0.9.1
76
76
  with:
77
77
  command: cleanup
78
78
  github-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.0
96
+ - uses: gh-workflow/ghcr-manager@0.9.1
97
97
  with:
98
98
  command: cleanup
99
99
  github-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.0
115
+ - uses: gh-workflow/ghcr-manager@0.9.1
116
116
  with:
117
117
  command: untag
118
118
  github-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.0
131
+ - uses: gh-workflow/ghcr-manager@0.9.1
132
132
  with:
133
133
  command: scan
134
134
  github-token: ${{ github.token }}
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "type": "git",
10
10
  "url": "https://github.com/gh-workflow/ghcr-manager"
11
11
  },
12
- "version": "0.9.0",
12
+ "version": "0.9.1",
13
13
  "type": "module",
14
14
  "engines": {
15
15
  "node": ">=20.0.0"