File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -54,28 +54,28 @@ runs:
5454 using : " composite"
5555 steps :
5656 - name : Checkout
57- uses : actions/checkout@v3
57+ uses : actions/checkout@v4
5858 if : ${{ inputs.checkout == 'true' && inputs.cache == 'true' }}
5959 with :
6060 fetch-depth : 0 # Required by git-restore-mtime
6161 - name : Checkout
62- uses : actions/checkout@v3
62+ uses : actions/checkout@v4
6363 if : ${{ inputs.checkout == 'true' && inputs.cache == 'false' }}
6464
6565 - name : Setup python
66- uses : actions/setup-python@v4
66+ uses : actions/setup-python@v5
6767 if : ${{ inputs.cache == 'true' }}
6868 with :
6969 python-version : ${{ inputs.python_version }}
7070 cache : ' pip'
7171 - name : Setup python
72- uses : actions/setup-python@v4
72+ uses : actions/setup-python@v5
7373 if : ${{ inputs.cache == 'false' }}
7474 with :
7575 python-version : ${{ inputs.python_version }}
7676
7777 - name : Restore cache
78- uses : actions/cache@v3
78+ uses : actions/cache@v4
7979 if : ${{ inputs.cache == 'true' }}
8080 with :
8181 path : /tmp/sphinxnotes-pages
@@ -101,7 +101,7 @@ runs:
101101 INPUT_SPHINX_BUILD_OPTIONS : ${{ inputs.sphinx_build_options }}
102102
103103 - name : Setup Pages
104- uses : actions/configure-pages@v2
104+ uses : actions/configure-pages@v4
105105 if : ${{ inputs.publish == 'true' }}
106106
107107 - name : Fix file permissions
You can’t perform that action at this time.
0 commit comments