From 93440538657a493c6339e567471074cefdfd8084 Mon Sep 17 00:00:00 2001 From: Badisi Date: Mon, 15 Apr 2024 13:01:35 +0200 Subject: [PATCH] chore(ci): upgrade actions to v4 --- .github/workflows/ci_demo-app.yml | 6 +++--- .github/workflows/ci_publish.yml | 6 +++--- .github/workflows/ci_site.yml | 4 ++-- .github/workflows/ci_tests.yml | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci_demo-app.yml b/.github/workflows/ci_demo-app.yml index ee819f0..3114db5 100644 --- a/.github/workflows/ci_demo-app.yml +++ b/.github/workflows/ci_demo-app.yml @@ -30,10 +30,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE }} registry-url: https://registry.npmjs.org/ @@ -43,7 +43,7 @@ jobs: run: npm install -g npm@latest - name: Cache .angular and node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-step with: key: cache-ubuntu-latest-node${{ env.NODE }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/ci_publish.yml b/.github/workflows/ci_publish.yml index 4266afe..2df3a9b 100644 --- a/.github/workflows/ci_publish.yml +++ b/.github/workflows/ci_publish.yml @@ -17,10 +17,10 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE }} registry-url: https://registry.npmjs.org/ @@ -30,7 +30,7 @@ jobs: run: npm install -g npm@latest - name: Cache .angular and node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-step with: key: cache-ubuntu-latest-node${{ env.NODE }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/ci_site.yml b/.github/workflows/ci_site.yml index 7e6e1dd..80ffeba 100644 --- a/.github/workflows/ci_site.yml +++ b/.github/workflows/ci_site.yml @@ -23,10 +23,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 98b998a..8a585d9 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -32,10 +32,10 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} registry-url: https://registry.npmjs.org/ @@ -51,7 +51,7 @@ jobs: run: npm install -g npm@latest - name: Cache .angular and node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-step with: key: cache-${{ matrix.os }}-node${{ matrix.node }}-${{ hashFiles('package-lock.json') }}