From ccf831cecc5f81efb10cb639ce877cd2d52761ab Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sun, 7 Jul 2024 21:36:11 -0700 Subject: [PATCH] [actions] update existing action versions --- .github/workflows/test.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f93dfc93..bdad6255 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,9 +16,9 @@ jobs: node: [14, 16, 17] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Load Node version ${{ matrix.node }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} cache: npm @@ -27,19 +27,19 @@ jobs: - name: Run Jest run: npm run test:ci - name: Run Coveralls - uses: coverallsapp/github-action@1.1.3 + uses: coverallsapp/github-action@v2 if: matrix.node == '16' with: github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: ./reports/lcov.info + file: ./reports/lcov.info flow: name: Flow type checking runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Load Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: npm - name: Npm Install @@ -54,9 +54,9 @@ jobs: node: [16] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Load Node version ${{ matrix.node }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} cache: npm @@ -69,9 +69,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Load Node version - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: npm - name: Npm Install