commit de964eabf2413114bb9de84c7581111b619db450
parent 76416bba11d4b14aa17cb1d61401f51cb7b7d4f5
Author: MTRNord <mtrnord1@gmail.com>
Date: Thu, 20 Apr 2023 23:19:23 +0200
chore: Use correct github action versions
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
- uses: actions/checkout@v2.3.1
+ uses: actions/checkout@v3.5.2
with:
persist-credentials: false
- name: Install and Build 🔧
@@ -19,7 +19,7 @@ jobs:
npm install
npm run build
- name: Deploy 🚀
- uses: JamesIves/github-pages-deploy-action@4.4.1
+ uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
folder: dist # The folder that the build-storybook script generates files.
clean: true # Automatically remove deleted files from the deploy branch
diff --git a/.github/workflows/storybook.yaml b/.github/workflows/storybook.yaml
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
- uses: actions/checkout@v2.3.1
+ uses: actions/checkout@v3.5.2
with:
persist-credentials: false
- name: Install and Build 🔧
@@ -19,7 +19,7 @@ jobs:
npm install
npm run build-storybook
- name: Deploy 🚀
- uses: JamesIves/github-pages-deploy-action@4.4.1
+ uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
folder: storybook-static # The folder that the build-storybook script generates files.
clean: true # Automatically remove deleted files from the deploy branch