Compare commits

...

3 Commits

Author SHA1 Message Date
David Blass cd20491d22 fix pnpm caching 2025-10-13 15:35:01 -04:00
David Blass 1a6ce6728c bump version 2025-10-13 15:30:48 -04:00
David Blass 3b39f2c8d8 move pnpm version specifier to actions 2025-10-13 15:30:41 -04:00
4 changed files with 10 additions and 5 deletions
+2
View File
@@ -23,6 +23,8 @@ jobs:
- name: Setup pnpm - name: Setup pnpm
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
+6 -1
View File
@@ -20,14 +20,19 @@ inputs:
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup pnpm - name: Setup pnpm
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js 24 - name: Setup Node.js 24
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: "24" node-version: "24"
cache: "pnpm" cache: "pnpm"
cache-dependency-path: ${{ github.action_path }}/pnpm-lock.yaml
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install
shell: bash shell: bash
+1 -2
View File
@@ -26164,7 +26164,7 @@ async function main(params) {
// package.json // package.json
var package_default = { var package_default = {
name: "@pullfrog/action", name: "@pullfrog/action",
version: "0.0.38", version: "0.0.40",
type: "module", type: "module",
files: [ files: [
"index.js", "index.js",
@@ -26190,7 +26190,6 @@ var package_default = {
upDeps: "pnpm up --latest", upDeps: "pnpm up --latest",
createLockfile: "pnpm --ignore-workspace install" createLockfile: "pnpm --ignore-workspace install"
}, },
packageManager: "pnpm@10.18.2",
dependencies: { dependencies: {
"@ark/fs": "0.49.0", "@ark/fs": "0.49.0",
"@actions/core": "^1.11.1", "@actions/core": "^1.11.1",
+1 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@pullfrog/action", "name": "@pullfrog/action",
"version": "0.0.38", "version": "0.0.40",
"type": "module", "type": "module",
"files": [ "files": [
"index.js", "index.js",
@@ -26,7 +26,6 @@
"upDeps": "pnpm up --latest", "upDeps": "pnpm up --latest",
"createLockfile": "pnpm --ignore-workspace install" "createLockfile": "pnpm --ignore-workspace install"
}, },
"packageManager": "pnpm@10.18.2",
"dependencies": { "dependencies": {
"@ark/fs": "0.49.0", "@ark/fs": "0.49.0",
"@actions/core": "^1.11.1", "@actions/core": "^1.11.1",