Skip to content

Commit

Permalink
feat: update action versions (#47)
Browse files Browse the repository at this point in the history
- Updates path to `release-please-action` and version to v4
- Updates `checkout` to v4
- Updates `cache` to v4
- Tagged as `feat` to ensure a proper release is created
  • Loading branch information
parkerd authored Feb 4, 2025
1 parent e0833d9 commit a2a0344
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check
uses: stordco/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- id: release
name: Release
uses: google-github-actions/release-please-action@v3
uses: googleapis/release-please-action@v4
with:
release-type: node
package-name: "@stordco/actions-sync"
Expand All @@ -23,7 +23,7 @@ jobs:

- if: steps.release.outputs.release_created
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ steps.release.outputs.tag_name }}
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
Expand All @@ -39,7 +39,7 @@ jobs:
- if: steps.release.outputs.release_created
id: cache
name: Cache node_modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-16-nodemodules-${{ hashFiles('package-lock.json') }}
Expand Down

0 comments on commit a2a0344

Please sign in to comment.