diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8d402f..1cc148f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: name: Check formatting runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/prepare-workspace - name: Check formatting run: npm run prettier-check @@ -21,7 +21,7 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/prepare-workspace - name: Run eslint run: npm run lint @@ -29,7 +29,7 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/prepare-workspace - name: Run tests run: npm run test @@ -40,7 +40,7 @@ jobs: run: working-directory: ./webif steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/prepare-workspace - name: Check formatting run: npm run prettier-check @@ -51,7 +51,7 @@ jobs: run: working-directory: ./webif steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/prepare-workspace - name: Run eslint run: npm run lint @@ -62,7 +62,7 @@ jobs: run: working-directory: ./webif steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ./.github/actions/prepare-workspace - name: Run svelte-check run: npm run check @@ -70,6 +70,6 @@ jobs: name: Build Docker image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build the image run: docker build -t eachwatt/latest .