Skip to content

Commit

Permalink
update actions because of need to use Node20 (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored May 10, 2024
1 parent 4f23383 commit f323ab0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci # Install dependencies.
- run: npm run ci # Execute CI scripts.
- run: git diff --exit-code # Fail if CI scripts make any source changes.
Expand All @@ -23,7 +23,7 @@ jobs:
os: [ ubuntu-latest, macOS-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci # Install dependencies.
- run: npm run build # Build javascript.
- run: npm run package # Build action package.
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
needs: [ build, test ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: configure git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os: [ ubuntu-latest, macOS-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci # Install dependencies.
- run: npm run build # Build javascript.
- run: npm run package # Build action package.
Expand Down

0 comments on commit f323ab0

Please sign in to comment.