Skip to content

Commit

Permalink
ci: upgrade gh actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
muety committed Nov 29, 2024
1 parent 17409b8 commit 67debc5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: master

Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down Expand Up @@ -45,15 +45,15 @@ 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
browser: chrome
record: true

- name: Upload cypress failure screenshots
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
Expand Down

0 comments on commit 67debc5

Please sign in to comment.