From b5f6042cf659385d612c9c845022be65445ce839 Mon Sep 17 00:00:00 2001 From: thibautbremand Date: Thu, 15 Feb 2024 18:10:37 +0100 Subject: [PATCH] Upgrade github actions to v4 --- .github/workflows/integration.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index f442023a9..6d369470a 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -12,9 +12,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node from .nvmrc - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' cache: 'yarn' @@ -23,7 +23,7 @@ jobs: - name: Build the extension run: yarn build - name: Cache build artifacts - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: packages/extension/build key: ${{ runner.os }}-build-${{ github.sha }} @@ -38,9 +38,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node from .nvmrc - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' cache: 'yarn' @@ -53,9 +53,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node from .nvmrc - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' cache: 'yarn'