code-foundry 0.14.0 → 0.15.0
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/.github/scripts/sync-template.sh +1 -1
- package/.github/workflows/ci.yml +4 -1
- package/.github/workflows/codeql.yml +4 -1
- package/.github/workflows/reusable-ci.yml +1 -1
- package/.github/workflows/reusable-codeql.yml +1 -1
- package/.github/workflows/reusable-security.yml +1 -1
- package/.github/workflows/reusable-test.yml +1 -1
- package/.github/workflows/security.yml +4 -1
- package/.github/workflows/test.yml +4 -1
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
|
@@ -371,7 +371,7 @@ done
|
|
|
371
371
|
|
|
372
372
|
# Reusable workflow callers must use a literal repository/ref. Render the
|
|
373
373
|
# selected runtime repository while leaving custom workflows untouched.
|
|
374
|
-
for file in .github/workflows/ci.yml .github/workflows/test.yml; do
|
|
374
|
+
for file in .github/workflows/ci.yml .github/workflows/test.yml .github/workflows/security.yml .github/workflows/codeql.yml; do
|
|
375
375
|
[ -f "$file" ] || continue
|
|
376
376
|
if grep -q '0xPlayerOne/code-foundry' "$file"; then
|
|
377
377
|
changed=$((changed + 1))
|
package/.github/workflows/ci.yml
CHANGED
|
@@ -13,5 +13,8 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
ci:
|
|
15
15
|
name: CI
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-ci.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-ci.yml@v0.14.0
|
|
17
|
+
with:
|
|
18
|
+
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
+
runtime-ref: v0.14.0
|
|
17
20
|
secrets: inherit
|
|
@@ -18,5 +18,8 @@ permissions:
|
|
|
18
18
|
jobs:
|
|
19
19
|
codeql:
|
|
20
20
|
name: CodeQL
|
|
21
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-codeql.yml@v0.
|
|
21
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-codeql.yml@v0.14.0
|
|
22
|
+
with:
|
|
23
|
+
runtime-repository: 0xPlayerOne/code-foundry
|
|
24
|
+
runtime-ref: v0.14.0
|
|
22
25
|
secrets: inherit
|
|
@@ -13,5 +13,8 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
security:
|
|
15
15
|
name: Security
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-security.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-security.yml@v0.14.0
|
|
17
|
+
with:
|
|
18
|
+
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
+
runtime-ref: v0.14.0
|
|
17
20
|
secrets: inherit
|
|
@@ -13,5 +13,8 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
test:
|
|
15
15
|
name: Test
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-test.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-test.yml@v0.14.0
|
|
17
|
+
with:
|
|
18
|
+
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
+
runtime-ref: v0.14.0
|
|
17
20
|
secrets: inherit
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.15.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.14.0...v0.15.0) (2026-07-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **runtime:** unify reusable workflow pins ([bd7aece](https://github.com/0xPlayerOne/code-foundry/commit/bd7aecefac9d02be698907cba686c536c6c242d6))
|
|
9
|
+
|
|
3
10
|
## [0.14.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.13.0...v0.14.0) (2026-07-28)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED