diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index dc7ac58..daa77df 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,8 +10,8 @@ jobs: fetch-depth: 1 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Installing dependencies run: yarn install --frozen-lockfile - name: Lint rome - run: yarn rome ci . \ No newline at end of file + run: yarn rome ci . diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d1b558e..ccb8bd3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,10 +15,10 @@ jobs: - name: Checkout Repo uses: actions/checkout@v2 - - name: Setup Node.js 16.x + - name: Setup Node.js 18.x uses: actions/setup-node@v2 with: - node-version: 16.x + node-version: 18.x - name: Install Dependencies run: yarn diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index 1269f24..d4bf7d3 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -15,10 +15,10 @@ jobs: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} - - name: Set up Node.js 16.x + - name: Set up Node.js 18.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install dependencies run: yarn install --frozen-lockfile @@ -29,4 +29,4 @@ jobs: pre-publish: yarn build env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}