File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout Code
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
with :
17
17
fetch-depth : 0
18
18
Original file line number Diff line number Diff line change 32
32
33
33
steps :
34
34
- name : Checkout ${{ matrix.package.name }}
35
- uses : actions/checkout@v3
35
+ uses : actions/checkout@v4
36
36
37
37
- name : Generate validation report for ${{ matrix.package.name }}
38
38
id : validation
45
45
additional_tlmgr_packages : ${{ matrix.package.additional_tlmgr_packages }}
46
46
47
47
- name : Upload ${{ matrix.package.name }} validation report
48
- uses : actions/upload-artifact@v2
48
+ uses : actions/upload-artifact@v4
49
49
if : success()
50
50
with :
51
51
name : ${{ matrix.package.name }} validation report
Original file line number Diff line number Diff line change 26
26
27
27
steps :
28
28
- name : Checkout ${{ matrix.package.name }}
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
31
31
- name : Generate validation report for ${{ matrix.package.name }}
32
32
uses : ./
39
39
no_cache : true
40
40
41
41
- name : Upload ${{ matrix.package.name }} validation report
42
- uses : actions/upload-artifact@v2
42
+ uses : actions/upload-artifact@v4
43
43
if : success()
44
44
with :
45
45
name : ${{ matrix.package.name }} validation report
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ jobs:
148
148
deployments : write
149
149
steps :
150
150
- name : Checkout repo 🛎
151
- uses : actions/checkout@v3
151
+ uses : actions/checkout@v4
152
152
153
153
- name : Build report 🏗
154
154
id : validation
Original file line number Diff line number Diff line change @@ -77,15 +77,15 @@ runs:
77
77
78
78
- name : Cache R packages
79
79
if : " contains(inputs.no_cache, 'false')"
80
- uses : actions/cache@v2
80
+ uses : actions/cache@v4
81
81
with :
82
82
path : /home/runner/work/_temp/Library
83
83
key : ${{ inputs.cache_version }}-${{ runner.os }}-${{ steps.r_version.outputs.R_VERSION }}-${{ hashFiles('DESCRIPTION') }}
84
84
restore-keys : ${{ inputs.cache_version }}-${{ runner.os }}-${{ steps.r_version.outputs.R_VERSION }}
85
85
86
86
- name : Cache Tex packages
87
87
if : " contains(inputs.no_cache, 'false')"
88
- uses : actions/cache@v2
88
+ uses : actions/cache@v4
89
89
with :
90
90
path : /home/runner/work/_temp/TinyTeX
91
91
key : ${{ inputs.cache_version }}-${{ runner.os }}-${{ steps.texlive_version.outputs.TEX_LIVE_VERSION }}-${{ hashFiles(inputs.report_template_path) }}
You can’t perform that action at this time.
0 commit comments