diff options
| author | Ritesh Ghosh <[email protected]> | 2024-03-03 23:43:28 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2024-03-03 23:43:28 +0530 |
| commit | 5b6608c2c83aea3f5081fb8abc50df2cba761ae1 (patch) | |
| tree | 5d3ac0c9213583b2b90f8f3911b58082e02aeffc /.github/workflows | |
| parent | d152f89b0f4410bda5216d73a199cffad5d629bb (diff) | |
| download | aniwatch-api-5b6608c2c83aea3f5081fb8abc50df2cba761ae1.tar.xz aniwatch-api-5b6608c2c83aea3f5081fb8abc50df2cba761ae1.zip | |
ci: update checkout, & setup-node action versions with node v20
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5d6a021..f25465e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Run Tests +name: "Run Tests" on: push: @@ -12,10 +12,12 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup NodeJS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 + with: + node-version: 20 - name: Install dependencies run: npm i |
