From 3e123da3e737362f072f7c721ec79b30ca01e922 Mon Sep 17 00:00:00 2001 From: Blake Niemyjski Date: Tue, 30 Jan 2024 07:40:03 -0600 Subject: [PATCH] chore(actions): upgrade GitHub action versions #130 --- .github/workflows/checks.yml | 16 ++++++++-------- .github/workflows/ci.yml | 6 +++--- .github/workflows/commit.yml | 2 +- .github/workflows/release.yml | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 5d1b02f..ca2dfa6 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -10,13 +10,13 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]')" steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v2 with: - version: 8.11 + version: 8 - name: Install Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: 'pnpm' @@ -30,13 +30,13 @@ jobs: name: storybook steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v2 with: - version: 8.11 + version: 8 - name: Install Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: 'pnpm' @@ -50,6 +50,6 @@ jobs: name: editorconfig steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check editorconfig - uses: editorconfig-checker/action-editorconfig-checker@v1 + uses: editorconfig-checker/action-editorconfig-checker@v2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb67a47..59693a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,13 +9,13 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]')" steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v2 with: - version: 8.11 + version: 8 - name: Install Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: 'pnpm' diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index 0f25d8f..f3a96b8 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -7,7 +7,7 @@ jobs: name: commitlint steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Run commitlint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 25fd985..b2a94c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,13 +8,13 @@ jobs: name: Publish package steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v2 with: - version: 8.11 + version: 8 - name: Install Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: 'pnpm'