Skip to content

Commit

Permalink
Update github actions to keep up with the times...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmattsson committed Jun 26, 2024
1 parent 1450f9b commit 6f3cd27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
node-version: [9.11.2, lts/*, latest]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup nodejs ${{matrix.node-version}}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
cache: 'npm'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup nodejs
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: current
cache: 'npm'
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Package
run: npm pack
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: chariotd-${{github.ref_name}}.tgz
draft: true
Expand Down

0 comments on commit 6f3cd27

Please sign in to comment.