diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml index 67051de..6f7fb58 100644 --- a/.github/workflows/ci_test.yml +++ b/.github/workflows/ci_test.yml @@ -14,16 +14,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check JSON syntax errors in translations via jq run: jq . public/locales/*/translation.json > /dev/null - name: Setup Node JS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: 'npm' - name: Install dependencies - run: npm install + run: npm ci - name: Run TypeScript typecheck run: npm run typecheck - name: Run linter diff --git a/.github/workflows/deploy_development.yml b/.github/workflows/deploy_development.yml index 364ebc0..42f81a4 100644 --- a/.github/workflows/deploy_development.yml +++ b/.github/workflows/deploy_development.yml @@ -22,14 +22,14 @@ jobs: ssh-host: ${{ secrets.SSH_HOST_NEW_IP }} ssh-port: ${{ secrets.SSH_HOST_NEW_PORT }} - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node JS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: 'npm' - name: Install dependencies - run: npm install + run: npm ci - name: Run TypeScript typecheck run: npm run typecheck - name: Set git commit diff --git a/.github/workflows/deploy_production.yml b/.github/workflows/deploy_production.yml index 65f1d8f..1a8b097 100644 --- a/.github/workflows/deploy_production.yml +++ b/.github/workflows/deploy_production.yml @@ -22,14 +22,14 @@ jobs: ssh-host: ${{ secrets.SSH_HOST_NEW_IP }} ssh-port: ${{ secrets.SSH_HOST_NEW_PORT }} - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node JS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: 'npm' - name: Install dependencies - run: npm install + run: npm ci - name: Run TypeScript typecheck run: npm run typecheck - name: Set git commit