Skip to content

Commit 0a348c3

Browse files
committed
fix: workflow updates
1 parent 3cf6077 commit 0a348c3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/dev-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
#needs: test_and_lint
3232
steps:
3333
- name: Check out the repo
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: Log in to Docker Hub
3737
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a

.github/workflows/doc-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,23 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
fetch-depth: 0 # Not needed if lastUpdated is not enabled
3535
# - uses: pnpm/action-setup@v2 # Uncomment this if you're using pnpm
3636
- name: Setup Node
37-
uses: actions/setup-node@v3
37+
uses: actions/setup-node@v4
3838
with:
3939
node-version: 18
4040
cache: npm # or pnpm / yarn
4141
- name: Setup Pages
42-
uses: actions/configure-pages@v3
42+
uses: actions/configure-pages@v4
4343
- name: Install dependencies
4444
run: npm ci # or pnpm install / yarn install
4545
- name: Build with VitePress
4646
run: npm run docs:build # or pnpm docs:build / yarn docs:build
4747
- name: Upload artifact
48-
uses: actions/upload-pages-artifact@v2
48+
uses: actions/upload-pages-artifact@v3
4949
with:
5050
path: docs/.vitepress/dist
5151

@@ -60,4 +60,4 @@ jobs:
6060
steps:
6161
- name: Deploy to GitHub Pages
6262
id: deployment
63-
uses: actions/deploy-pages@v2
63+
uses: actions/deploy-pages@v4

.github/workflows/prod-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Check out the repo
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929

3030
#Fetch Latest release
3131
- name: Fetch latest release

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
python-version: ["3.10"]
3232

3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v3
36+
uses: actions/setup-python@v5
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
- name: 'Create env file'

0 commit comments

Comments
 (0)