Skip to content

Commit 1618b2a

Browse files
authored
upgrade several actions (#81)
* align pnpm/action-setup version for dependabot * upgrade several actions
1 parent 3daf7d6 commit 1618b2a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/install-dependencies/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ runs:
1414

1515
steps:
1616
- name: Install pnpm
17-
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
17+
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
1818

1919
- name: Setup Node.js (via input)
2020
if: ${{ inputs.node-version }}
21-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
21+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2222
with:
2323
node-version: ${{ inputs.node-version }}
2424
cache: "pnpm"
2525
registry-url: "https://registry.npmjs.org"
2626

2727
- name: Setup Node.js (via package.json engines)
2828
if: ${{ !inputs.node-version }}
29-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
29+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3030
with:
3131
node-version-file: "package.json"
3232
cache: "pnpm"

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
run: echo "package_json=$(realpath --relative-to="$GITHUB_WORKSPACE" "${{ github.action_path }}/package.json")" >> "$GITHUB_OUTPUT"
3737
shell: bash
3838
- name: Install pnpm
39-
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
39+
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
4040
with:
4141
package_json_file: ${{ steps.resolve_path.outputs.package_json }}
4242
- name: Setup Node.js

0 commit comments

Comments
 (0)