Skip to content

Commit

Permalink
chore: Update Github actions (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns authored Feb 7, 2025
1 parent 6c45a99 commit 9ff98d5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:

steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # pin@main
- name: ⎔ Setup node ${{ matrix.node-version }}
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@v3
uses: actions/setup-node@802632921f8532d2409ae6eac3313b6f81f11122 # pin@main
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: 🗄 Cache node_modules
id: cache-node_modules
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # pin@v3
uses: actions/cache@36f1e144e1c8edb0a652766b484448563d8baf46 # pin@main
with:
path: "**/node_modules"
key: node_modules-${{ runner.os }}-node-${{ matrix.node-version }}-${{
hashFiles('**/package-lock.json') }}
- name: 🗄 Cache .eslintcache
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # pin@v3
uses: actions/cache@36f1e144e1c8edb0a652766b484448563d8baf46 # pin@main
with:
path: .eslintcache
key: eslintcache-${{ runner.os }}-node-${{ matrix.node-version }}-${{
Expand All @@ -54,7 +54,7 @@ jobs:
CLOCKODO_API_KEY: ${{ secrets.CLOCKODO_API_KEY }}
- name: ⬆️ Upload coverage report
if: "matrix.node-version == '22.x'"
uses: coverallsapp/github-action@9ba913c152ae4be1327bfb9085dc806cedb44057 # pin@1.1.3
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # pin@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 9ff98d5

Please sign in to comment.