Skip to content

Commit

Permalink
ci: update gh action version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicosantux committed Feb 10, 2024
1 parent 018f5f5 commit 3a59309
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# that runs on: tag. (Using the GitHub token would
# not run the workflow to prevent infinite recursion)
- name: 🎯 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.DEPLOY_KEY }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

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

- name: 🔧 Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
run_install: |
Expand All @@ -26,7 +26,7 @@ jobs:
run: pnpm build

- name: 🚀 Publish to npm
uses: JS-DevTools/npm-publish@v2
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}

Expand All @@ -38,7 +38,7 @@ jobs:
contents: write
steps:
- name: 🎯 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🔥 Create Release
run: gh release create ${{ github.ref }} --generate-notes
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,28 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🎯 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🔧 Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: 💅 Lint
run: pnpm format && pnpm lint
run: pnpm lint

build:
name: 🏭 Build
needs: [lint]
runs-on: ubuntu-latest
steps:
- name: 🎯 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🔧 Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
run_install: |
Expand Down

0 comments on commit 3a59309

Please sign in to comment.