Skip to content

Commit

Permalink
ci: upgrade versions
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjavi committed Jun 27, 2024
1 parent d4df272 commit 4462c84
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-project/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ env:
runs:
using: 'composite'
steps:
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
run_install: false

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
# registry-url: https://npm.pkg.github.com
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Quality Checks

env:
NODE_VERSION: 20.9.0
PNPM_VERSION: 8.10.5
NODE_VERSION: 20.15.0
PNPM_VERSION: 9.4.0
APP_ENV: development

on:
Expand All @@ -24,7 +24,7 @@ jobs:
name: 'Lint, Build & Test'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: 'Setup project'
uses: ./.github/actions/setup-project
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Update dependencies

env:
NODE_VERSION: 20.9.0
PNPM_VERSION: 8.10.5
NODE_VERSION: 20.15.0
PNPM_VERSION: 9.4.0
APP_ENV: development

on:
Expand All @@ -21,7 +21,7 @@ jobs:
outputs:
has_changes: ${{ steps.git_diff.outputs.has_changes }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history so that git diff can compare against HEAD~1

Expand Down

1 comment on commit 4462c84

@vercel
Copy link

@vercel vercel bot commented on 4462c84 Jun 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.