File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,20 +14,20 @@ jobs:
1414 runs-on : ubuntu-latest
1515 steps :
1616 # https://github.com/marketplace/actions/checkout
17- - uses : actions/checkout@v2
17+ - uses : actions/checkout@v6
1818 with :
1919 fetch-depth : 0
2020 lfs : true
2121 # https://github.com/marketplace/actions/setup-python
2222 # ^-- This gives info on matrix testing.
2323 - name : Install Python
24- uses : actions/setup-python@v2
24+ uses : actions/setup-python@v6
2525 with :
2626 python-version : 3.8
2727 # https://docs.github.com/en/actions/guides/building-and-testing-python#caching-dependencies
2828 # ^-- How to set up caching for pip on Ubuntu
2929 - name : Cache pip
30- uses : actions/cache@v2
30+ uses : actions/cache@v5
3131 with :
3232 path : ~/.cache/pip
3333 key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
@@ -134,7 +134,7 @@ jobs:
134134 # Deploy
135135 # https://github.com/peaceiris/actions-gh-pages
136136 - name : Deploy
137- uses : peaceiris/actions-gh-pages@v3
137+ uses : peaceiris/actions-gh-pages@v4
138138 if : ${{ github.event_name == 'push' }}
139139 # if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/$defaultBranch' }}
140140 with :
You can’t perform that action at this time.
0 commit comments