Compare commits

..

21 Commits

Author SHA1 Message Date
Gregorio Litenstein
902f08f140
Update build
Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
2026-05-22 09:44:26 -04:00
Gregorio Litenstein
5980195af8
Fix script invocations, lint and format.
Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
2026-05-22 09:44:26 -04:00
Gregorio Litenstein
06c951c574
licenses
Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
2026-05-22 09:44:26 -04:00
Gregorio Litenstein
9548a17dbb
Update @octokit/action to 5.x
Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
2026-05-22 09:44:25 -04:00
Gregorio Litenstein
1cc2f49384
Update tests for deleteCacheByKey.
And rebuild.

Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
2026-05-22 09:44:23 -04:00
Gregorio Litenstein
f2b3cc4dff
Update documentation and licenses. 2026-05-22 09:41:50 -04:00
Gregorio Litenstein
e7e8bcb819
Update some dependencies.
Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
2026-05-22 09:39:02 -04:00
Gregorio Litenstein
7a9fdeba07
Don’t accidentally deleting cache from base branch
Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
2026-05-22 09:39:02 -04:00
Gregorio Litenstein
bca7d427d7
Allow refreshing cache also with granular save. 2026-05-22 09:39:02 -04:00
Gregorio Litenstein
70499061b3
Add tests for cache refreshing. 2026-05-22 09:39:02 -04:00
Gregorio Litenstein
428824f01f
Allow updating caches 2026-05-22 09:39:01 -04:00
Yang Cao
27d5ce7f10
Merge pull request #1747 from actions/yacaovsnc/update-dependency
Update ts-http-runtime dependency
2026-04-13 11:36:02 -04:00
Yang Cao
f280785d7b licensed changes 2026-04-13 11:30:08 -04:00
Yang Cao
619aeb1606 npm run build generated dist files 2026-04-13 11:17:26 -04:00
Yang Cao
bcf16c2893 Update ts-http-runtime to 0.3.5 2026-04-13 11:14:40 -04:00
Bassem Dghaidi
668228422a
Merge pull request #1738 from actions/prepare-v5.0.4
Update dependencies & patch security vulnerabilities
2026-03-18 16:03:49 +01:00
Bassem Dghaidi
e34039626f Update RELEASES 2026-03-18 07:03:52 -07:00
Bassem Dghaidi
8a67110529 Add licenses 2026-03-18 06:34:30 -07:00
Bassem Dghaidi
1865903e1b Update dependencies & patch security vulnerabilities 2026-03-18 06:29:24 -07:00
Ryan Ghadimi
5656298164
Merge pull request #1722 from RyPeck/patch-1
Fix cache key in examples.md for bun.lock
2026-02-24 14:21:04 +00:00
Ryan Peck
4e380d19e1
Fix cache key in examples.md for bun.lock
Updated cache key to use 'bun.lock' instead of 'bun.lockb' for consistency.
2026-02-24 09:11:36 -05:00
4 changed files with 11 additions and 5 deletions

View File

@ -25,6 +25,12 @@
## Changelog
### 5.0.4
- Bump `minimatch` to v3.1.5 (fixes ReDoS via globstar patterns)
- Bump `undici` to v6.24.1 (WebSocket decompression bomb protection, header validation fixes)
- Bump `fast-xml-parser` to v5.5.6
### 5.0.3
- Bump `@actions/cache` to v5.0.5 (Resolves: https://github.com/actions/cache/security/dependabot/33)

View File

@ -49,7 +49,7 @@
with:
path: |
~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
```
### Windows
@ -59,7 +59,7 @@
with:
path: |
~\.bun
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
```
## C# - NuGet

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "cache",
"version": "5.0.3",
"version": "5.0.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "cache",
"version": "5.0.3",
"version": "5.0.4",
"license": "MIT",
"dependencies": {
"@actions/cache": "^5.0.5",

View File

@ -1,6 +1,6 @@
{
"name": "cache",
"version": "5.0.3",
"version": "5.0.4",
"private": true,
"description": "Cache dependencies and build outputs",
"main": "dist/restore/index.js",