Skip to content

Commit

Permalink
chore: upgrade github actions to the latest versions (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesLMilner authored Sep 4, 2024
1 parent 2f2792d commit 9770068
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/beta-release-increment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.TERRA_DRAW_PAT }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Parent Folder
Expand All @@ -26,9 +26,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Parent Folder
Expand All @@ -41,9 +41,9 @@ jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Parent Folder
Expand All @@ -57,8 +57,8 @@ jobs:
timeout-minutes: 60
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: "20.x"
- name: Install parent directory
Expand All @@ -68,7 +68,7 @@ jobs:
working-directory: ./e2e
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').dependencies['@playwright/test'].version)")" >> $GITHUB_ENV
- name: Cache playwright binaries
uses: actions/cache@v3
uses: actions/cache@v4
id: playwright-cache
with:
path: |
Expand Down

0 comments on commit 9770068

Please sign in to comment.