Skip to content

Commit

Permalink
ci: use latest version of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vittominacori committed Jan 9, 2025
1 parent 7d9ee96 commit 53c482e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ runs:
using: composite
steps:
- name: Setup Node
uses: actions/setup-node@v4.1.0
uses: actions/setup-node@v4
with:
node-version: 22

- name: Setup Cache
uses: actions/cache@v4.1.2
uses: actions/cache@v4
id: cache
with:
path: '**/node_modules'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
Expand All @@ -32,7 +32,7 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
Expand All @@ -50,7 +50,7 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
Expand All @@ -59,7 +59,7 @@ jobs:
run: npm run coverage

- name: Post to Codecov
uses: codecov/codecov-action@v5.0.7
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Expand All @@ -70,7 +70,7 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
Expand All @@ -87,10 +87,10 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4

- name: Run CodeSpell
uses: codespell-project/actions-codespell@v2.1
uses: codespell-project/actions-codespell@v2
with:
check_hidden: true
check_filenames: true
Expand Down

0 comments on commit 53c482e

Please sign in to comment.