Skip to content

Commit

Permalink
Upgrade github actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibautBremand committed Feb 15, 2024
1 parent 8b56852 commit b5f6042
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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 }}
Expand All @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit b5f6042

Please sign in to comment.