From 0944b777e4abf28c12846fe6bf1f8185e97e4761 Mon Sep 17 00:00:00 2001 From: Badisi Date: Sat, 13 Apr 2024 02:38:21 +0200 Subject: [PATCH] chore(ci): upgrade actions to v4 --- .github/workflows/ci_publish.yml | 6 +++--- .github/workflows/ci_tests.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_publish.yml b/.github/workflows/ci_publish.yml index 4181da0..d0097b6 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_tests.yml b/.github/workflows/ci_tests.yml index 923c592..b154a28 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -26,10 +26,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/ @@ -45,7 +45,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') }}