Skip to content

Commit

Permalink
Update GitHub action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fodor0205 committed Feb 10, 2024
1 parent 5626f26 commit 303126f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/distribution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand All @@ -33,7 +33,7 @@ jobs:
run: tar -cvf distribution.tar distribution

- name: Upload distribution artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: distribution
path: distribution.tar
5 changes: 3 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: editorconfig-checker/action-editorconfig-checker@main

- name: Check if all files meet EditorConfig rules
Expand All @@ -27,7 +28,7 @@ jobs:
scandir: './development'

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down

0 comments on commit 303126f

Please sign in to comment.