Skip to content

Commit 5c68cfb

Browse files
committed
chore: update pipelines
1 parent 1712d25 commit 5c68cfb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/on-push.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
node-version: [20.x, 18.x]
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: Get npm cache directory
2121
id: npm-cache-dir
2222
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
2323
shell: bash
2424
- name: Cache Node.js modules on Linux
25-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2626
with:
2727
path: ${{ steps.npm-cache-dir.outputs.dir }}
2828
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/on-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
- '@json2csv/cli'
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
# Setup .npmrc file to publish to npm
23-
- uses: actions/setup-node@v3
23+
- uses: actions/setup-node@v4
2424
with:
2525
node-version: '20.x'
2626
# Needs to be explicitly specified for auth to work

0 commit comments

Comments
 (0)