File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
6060 steps :
6161 - name : Deploy to GitHub Pages
6262 id : deployment
63- uses : actions/deploy-pages@v2
63+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments