Skip to content

Commit

Permalink
chore: add action version comment
Browse files Browse the repository at this point in the history
  • Loading branch information
andykenward committed Feb 11, 2024
1 parent 4f6c1e5 commit 932bf3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
if: ${{ github.repository == 'unlike-ltd/github-actions' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- name: Setup Node.js Pnpm & install dependencies
uses: ./setup-pnpm
with:
node-version: 20.x
- name: Create Release Pull Request
id: changesets
uses: changesets/action@f13b1baaa620fde937751f5d2c3572b9da32af23
uses: changesets/action@f13b1baaa620fde937751f5d2c3572b9da32af23 #v1.4.5
with:
publish: pnpm release
env:
Expand Down
7 changes: 3 additions & 4 deletions setup-pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,18 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 #v4.0.2
with:
node-version: ${{ inputs.node-version }}
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d
name: Install pnpm
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d #v3.0.0
with:
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2
- uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 #v4.0.0
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Expand Down

0 comments on commit 932bf3c

Please sign in to comment.