@@ -32,11 +32,11 @@ jobs:
3232 steps :
3333 # https://github.com/actions/checkout
3434 - name : Checkout codebase
35- uses : actions/checkout@v2
35+ uses : actions/checkout@v3
3636
3737 # https://github.com/actions/setup-node
3838 - name : Install Node.js ${{ matrix.node-version }}
39- uses : actions/setup-node@v2
39+ uses : actions/setup-node@v3
4040 with :
4141 node-version : ${{ matrix.node-version }}
4242
6161 id : yarn-cache-dir-path
6262 run : echo "::set-output name=dir::$(yarn cache dir)"
6363 - name : Cache Yarn dependencies
64- uses : actions/cache@v2
64+ uses : actions/cache@v3
6565 with :
6666 # Cache entire Yarn cache directory (see previous step)
6767 path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
8888 # Upload coverage reports to Codecov (for one version of Node only)
8989 # https://github.com/codecov/codecov-action
9090 - name : Upload coverage to Codecov.io
91- uses : codecov/codecov-action@v2
91+ uses : codecov/codecov-action@v3
9292 if : matrix.node-version == '16.x'
9393
9494 # Using docker-compose start backend using CI configuration
@@ -103,7 +103,7 @@ jobs:
103103 # https://github.com/cypress-io/github-action
104104 # (NOTE: to run these e2e tests locally, just use 'ng e2e')
105105 - name : Run e2e tests (integration tests)
106- uses : cypress-io/github-action@v2
106+ uses : cypress-io/github-action@v4
107107 with :
108108 # Run tests in Chrome, headless mode
109109 browser : chrome
@@ -119,7 +119,7 @@ jobs:
119119 # Cypress always creates a video of all e2e tests (whether they succeeded or failed)
120120 # Save those in an Artifact
121121 - name : Upload e2e test videos to Artifacts
122- uses : actions/upload-artifact@v2
122+ uses : actions/upload-artifact@v3
123123 if : always()
124124 with :
125125 name : e2e-test-videos
@@ -128,7 +128,7 @@ jobs:
128128 # If e2e tests fail, Cypress creates a screenshot of what happened
129129 # Save those in an Artifact
130130 - name : Upload e2e test failure screenshots to Artifacts
131- uses : actions/upload-artifact@v2
131+ uses : actions/upload-artifact@v3
132132 if : failure()
133133 with :
134134 name : e2e-test-screenshots
0 commit comments