diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ac7cbab..2b4620b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 60 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install modules run: npm install - name: Run tests @@ -27,11 +27,11 @@ jobs: needs: tests timeout-minutes: 60 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js 18.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '18.x' + node-version: '20.x' - name: Install dependencies run: npm install - name: Environment @@ -55,11 +55,11 @@ jobs: timeout-minutes: 60 needs: tests steps: - - uses: actions/checkout@v3 - - name: Use Node.js 18.x + - uses: actions/checkout@v4 + - name: Use Node.js 20.x uses: actions/setup-node@v3 with: - node-version: '18.x' + node-version: '20.x' - name: Install dependencies run: npm install - name: Environment