diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 11ef0313..0d9090ea 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: master @@ -18,7 +18,7 @@ jobs: run: npm ci && npm run build:all - name: Deploy to GitHub Pages - uses: crazy-max/ghaction-github-pages@v2 + uses: crazy-max/ghaction-github-pages@v4 with: target_branch: gh-pages build_dir: Frontend/public diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 582df20a..ada4be30 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,11 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: Frontend/node_modules key: node-modules-${{ hashFiles('Frontend/package-lock.json') }} @@ -45,7 +45,7 @@ jobs: run: docker compose up testdata_generator - name: Run cypress integration tests - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v6 with: working-directory: "./Frontend" command: npm run integration_test_cypress:run @@ -53,7 +53,7 @@ jobs: record: true - name: Upload cypress failure screenshots - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 if: failure() with: name: cypress-screenshots