Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
ci: update GH Actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen committed Jul 7, 2024
1 parent 0536456 commit 3f55a50
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Cache install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules/
key: ${{ github.sha }}-install
Expand All @@ -26,9 +26,9 @@ jobs:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Retrive install cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules/
key: ${{ github.sha }}-install
Expand All @@ -39,9 +39,9 @@ jobs:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Retrive install cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules/
key: ${{ github.sha }}-install
Expand All @@ -52,9 +52,9 @@ jobs:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Retrive install cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules/
key: ${{ github.sha }}-install
Expand All @@ -65,9 +65,9 @@ jobs:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Retrive Install Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./node_modules/
key: ${{ github.sha }}-install
Expand Down

0 comments on commit 3f55a50

Please sign in to comment.