File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 16
16
17
17
steps :
18
18
- name : Checkout
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
with :
21
21
submodules : true # Fetch Hugo themes (true OR recursive)
22
22
fetch-depth : 2 # Fetch enough history for HEAD~1
46
46
echo "changed-files actual list: ${{ steps.changed-files-key.outputs.debug_changed_files_list }}"
47
47
48
48
- name : Upload Hugo source artifact
49
- uses : actions/upload-artifact@v3
49
+ uses : actions/upload-artifact@v4
50
50
with :
51
51
# Cache only the specific directories and files needed for the Hugo build, and not capturing the full .git folder.
52
52
path : |
75
75
runs-on : ubuntu-latest
76
76
steps :
77
77
- name : Download Hugo source artifact
78
- uses : actions/download-artifact@v3
78
+ uses : actions/download-artifact@v4
79
79
with :
80
80
name : hugo-source-files
81
81
path : . # Download to the root of the workspace
88
88
89
89
- name : Cache Hugo build outputs
90
90
id : cache-hugo-build
91
- uses : actions/cache@v3
91
+ uses : actions/cache@v4
92
92
with :
93
93
# Cache Hugo's generated 'public' directory and 'resources' directory
94
94
path : |
You can’t perform that action at this time.
0 commit comments