Skip to content

Commit 0e4b34a

Browse files
committed
chore: update GitHub Actions to use latest action versions
1 parent 2ad27ad commit 0e4b34a

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Setup Node.js environment
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
2121
cache: "npm"
2222
node-version: 18.x
@@ -26,12 +26,12 @@ jobs:
2626
- run: npm run coverage
2727
- run: npx remap-istanbul -i coverage/coverage.json -t lcovonly > ./coverage/ts.info
2828
- name: Coveralls
29-
uses: coverallsapp/github-action@master
29+
uses: coverallsapp/github-action@v2.3.6
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
3232
path-to-lcov: ./coverage/ts.info
3333
- name: Archive production artifacts
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: dist
3737
path: |
@@ -43,17 +43,17 @@ jobs:
4343
needs: build
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4747
- name: Setup Node.js environment
48-
uses: actions/setup-node@v3
48+
uses: actions/setup-node@v4
4949
with:
5050
cache: "npm"
5151
node-version: 18.x
5252
- run: npm ci
5353
- name: Install semantic-release extra plugins
5454
run: npm install --save-dev @semantic-release/changelog @semantic-release/git
5555
- name: Download the build artifacts
56-
uses: actions/download-artifact@v3
56+
uses: actions/download-artifact@v4
5757
with:
5858
name: dist
5959
- name: Release

.husky/pre-push

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
31

42
npm run lint

0 commit comments

Comments
 (0)