Skip to content

Commit

Permalink
ci: upgrade GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicm67 committed Dec 9, 2023
1 parent ad6f322 commit df46888
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Build and push Docker images
id: docker_build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "16"
node-version: "20"

- name: Checkout the code
uses: actions/checkout@v3
Expand All @@ -25,7 +25,7 @@ jobs:
NODE_ENV=production npm run build:modern
- name: Run Cypress tests
uses: cypress-io/github-action@v4
uses: cypress-io/github-action@v6
env:
NODE_ENV: production
with:
Expand Down

0 comments on commit df46888

Please sign in to comment.