From 932bf3c4bc5c8a06c128b01291914f463f63b120 Mon Sep 17 00:00:00 2001 From: Andy Kenward <4893048+andykenward@users.noreply.github.com> Date: Sun, 11 Feb 2024 13:39:50 +0000 Subject: [PATCH] chore: add action version comment --- .github/workflows/release.yml | 4 ++-- setup-pnpm/action.yml | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 78dbfcb..f4d9b27 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/setup-pnpm/action.yml b/setup-pnpm/action.yml index dd6a154..c1dea3f 100644 --- a/setup-pnpm/action.yml +++ b/setup-pnpm/action.yml @@ -13,11 +13,10 @@ 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 @@ -25,7 +24,7 @@ runs: 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 }}