Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-pull-request-health.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
deorus marked this conversation as resolved.

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v6
Comment thread
deorus marked this conversation as resolved.
with:
node-version: ${{ matrix.node-version }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
deorus marked this conversation as resolved.

- name: Read Node.js version from '.nvmrc'
id: nvmrc
run: |
echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT

- name: Setup Node.js ${{ steps.nvmrc.outputs.NODE_VERSION }}
uses: actions/setup-node@v3
uses: actions/setup-node@v6
Comment thread
deorus marked this conversation as resolved.
with:
node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}

Expand All @@ -44,7 +44,7 @@ jobs:
run: npm run build

- name: Publish to GitHub Package Registry
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}
registry-url: https://npm.pkg.github.com/
Expand All @@ -57,7 +57,7 @@ jobs:
run: rm -f $NPM_CONFIG_USERCONFIG

- name: Publish to npm registry
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}
registry-url: https://registry.npmjs.org/
Expand Down