Skip to content

Commit

Permalink
Update to node@20
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitive committed Jan 31, 2024
1 parent 8411d37 commit 1f1f730
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make install
- run: make lint
- run: make test
8 changes: 4 additions & 4 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Build
- run: make install
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: EndBug/add-and-commit@v9
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
message: "Build action v1"
message: "Build action v2"
add: "dist/ --force"
tag: "v1 --force"
push: "origin v1 --force"
tag: "v2 --force"
push: "origin v2 --force"
2 changes: 1 addition & 1 deletion .github/workflows/yarn-lock-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create PR comment with yarn.lock changes
uses: Simek/yarn-lock-changes@main
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
files: ${{ steps.produce-matrix.outputs.files }}
empty: ${{ steps.produce-matrix.outputs.empty }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Produce packages matrix from folder structure
id: produce-matrix
uses: Nitive/get-changed-files@v1
uses: Nitive/get-changed-files@v2
with:
files: |
packages/*/
Expand All @@ -32,7 +32,7 @@ jobs:
matrix:
package: ${{ fromJson(needs.produce-packages-matrix.outputs.files) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Lint package
id: working-directory
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ outputs:
description: >
Set to true if no modified files or folders were found
runs:
using: "node16"
using: "node20"
main: "dist/index.js"

0 comments on commit 1f1f730

Please sign in to comment.