Skip to content

Commit

Permalink
Update GitHub Actions packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso committed Dec 28, 2024
1 parent d437fa6 commit e8d270e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@ jobs:
name: Node ${{ matrix.node }} build
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: npm ci
run: npm ci
- name: npm test
run: npm test
- name: coverage artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coveralls_node_${{ matrix.node }}_r${{ github.run_id }}_${{ github.run_number }}
path: coverage
- name: fix lcov.info
run: |
sed -i -E 's/SF:(\.\.\/\.\.(.+))/SF:\2/' coverage/lcov.info
- name: coveralls
uses: coverallsapp/github-action@v1
uses: coverallsapp/github-action@v2
with:
flag-name: node-${{ matrix.node }}
parallel: true
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: coveralls report
uses: coverallsapp/github-action@v1
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "node-16,node-18,node-20"
2 changes: 1 addition & 1 deletion .github/workflows/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: gitlabels/gitlabels@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e8d270e

Please sign in to comment.