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 1212 runs-on : ubuntu-latest
1313 steps :
1414 - name : Checkout Code
15- uses : actions/checkout@v3
15+ uses : actions/checkout@v4
1616 with :
1717 fetch-depth : 0
1818
Original file line number Diff line number Diff line change 3232
3333 steps :
3434 - name : Checkout ${{ matrix.package.name }}
35- uses : actions/checkout@v3
35+ uses : actions/checkout@v4
3636
3737 - name : Generate validation report for ${{ matrix.package.name }}
3838 id : validation
4545 additional_tlmgr_packages : ${{ matrix.package.additional_tlmgr_packages }}
4646
4747 - name : Upload ${{ matrix.package.name }} validation report
48- uses : actions/upload-artifact@v2
48+ uses : actions/upload-artifact@v4
4949 if : success()
5050 with :
5151 name : ${{ matrix.package.name }} validation report
Original file line number Diff line number Diff line change 2626
2727 steps :
2828 - name : Checkout ${{ matrix.package.name }}
29- uses : actions/checkout@v3
29+ uses : actions/checkout@v4
3030
3131 - name : Generate validation report for ${{ matrix.package.name }}
3232 uses : ./
3939 no_cache : true
4040
4141 - name : Upload ${{ matrix.package.name }} validation report
42- uses : actions/upload-artifact@v2
42+ uses : actions/upload-artifact@v4
4343 if : success()
4444 with :
4545 name : ${{ matrix.package.name }} validation report
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ jobs:
148148 deployments : write
149149 steps :
150150 - name : Checkout repo 🛎
151- uses : actions/checkout@v3
151+ uses : actions/checkout@v4
152152
153153 - name : Build report 🏗
154154 id : validation
Original file line number Diff line number Diff line change @@ -77,15 +77,15 @@ runs:
7777
7878 - name : Cache R packages
7979 if : " contains(inputs.no_cache, 'false')"
80- uses : actions/cache@v2
80+ uses : actions/cache@v4
8181 with :
8282 path : /home/runner/work/_temp/Library
8383 key : ${{ inputs.cache_version }}-${{ runner.os }}-${{ steps.r_version.outputs.R_VERSION }}-${{ hashFiles('DESCRIPTION') }}
8484 restore-keys : ${{ inputs.cache_version }}-${{ runner.os }}-${{ steps.r_version.outputs.R_VERSION }}
8585
8686 - name : Cache Tex packages
8787 if : " contains(inputs.no_cache, 'false')"
88- uses : actions/cache@v2
88+ uses : actions/cache@v4
8989 with :
9090 path : /home/runner/work/_temp/TinyTeX
9191 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