File tree Expand file tree Collapse file tree 9 files changed +20
-19
lines changed Expand file tree Collapse file tree 9 files changed +20
-19
lines changed Original file line number Diff line number Diff line change 88jobs :
99 send-close-signal :
1010 name : " Send closing signal"
11- runs-on : ubuntu-latest
11+ runs-on : ubuntu-22.04
1212 if : ${{ github.event.action == 'closed' }}
1313 steps :
1414 - name : " Create PRtifact"
2020 with :
2121 name : pr
2222 path : ./pr
23-
Original file line number Diff line number Diff line change 2020 # - no .github files were committed
2121 test-pr :
2222 name : " Test if pull request is valid"
23- runs-on : ubuntu-latest
23+ runs-on : ubuntu-22.04
2424 if : >
2525 github.event.workflow_run.event == 'pull_request' &&
2626 github.event.workflow_run.conclusion == 'success'
7474 create-branch :
7575 name : " Create Git Branch"
7676 needs : test-pr
77- runs-on : ubuntu-latest
77+ runs-on : ubuntu-22.04
7878 if : ${{ needs.test-pr.outputs.is_valid == 'true' }}
7979 env :
8080 NR : ${{ needs.test-pr.outputs.number }}
@@ -120,7 +120,7 @@ jobs:
120120 comment-pr :
121121 name : " Comment on Pull Request"
122122 needs : [test-pr, create-branch]
123- runs-on : ubuntu-latest
123+ runs-on : ubuntu-22.04
124124 if : ${{ needs.test-pr.outputs.is_valid == 'true' }}
125125 env :
126126 NR : ${{ needs.test-pr.outputs.number }}
@@ -150,7 +150,7 @@ jobs:
150150 comment-changed-workflow :
151151 name : " Comment if workflow files have changed"
152152 needs : test-pr
153- runs-on : ubuntu-latest
153+ runs-on : ubuntu-22.04
154154 if : ${{ always() && needs.test-pr.outputs.is_valid == 'false' }}
155155 env :
156156 NR : ${{ github.event.workflow_run.pull_requests[0].number }}
@@ -182,4 +182,3 @@ jobs:
182182 with :
183183 pr : ${{ env.NR }}
184184 body : ${{ env.body }}
185-
Original file line number Diff line number Diff line change 99jobs :
1010 delete :
1111 name : " Delete branch from Pull Request"
12- runs-on : ubuntu-latest
12+ runs-on : ubuntu-22.04
1313 if : >
1414 github.event.workflow_run.event == 'pull_request' &&
1515 github.event.workflow_run.conclusion == 'success'
Original file line number Diff line number Diff line change 1111 test-pr :
1212 name : " Test if pull request is valid"
1313 if : ${{ github.event.action != 'closed' }}
14- runs-on : ubuntu-latest
14+ runs-on : ubuntu-22.04
1515 outputs :
1616 is_valid : ${{ steps.check-pr.outputs.VALID }}
1717 permissions :
Original file line number Diff line number Diff line change 1313 test-pr :
1414 name : " Record PR number"
1515 if : ${{ github.event.action != 'closed' }}
16- runs-on : ubuntu-latest
16+ runs-on : ubuntu-22.04
1717 outputs :
1818 is_valid : ${{ steps.check-pr.outputs.VALID }}
1919 steps :
4848 build-md-source :
4949 name : " Build markdown source files if valid"
5050 needs : test-pr
51- runs-on : ubuntu-latest
51+ runs-on : ubuntu-22.04
5252 if : ${{ needs.test-pr.outputs.is_valid == 'true' }}
5353 env :
5454 GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 2121jobs :
2222 full-build :
2323 name : " Build Full Site"
24- runs-on : ubuntu-latest
24+
25+ # 2024-10-01: ubuntu-latest is now 24.04 and R is not installed by default in the runner image
26+ # pin to 22.04 for now
27+ runs-on : ubuntu-22.04
2528 permissions :
2629 checks : write
2730 contents : write
Original file line number Diff line number Diff line change 1- 0.16.7
1+ 0.16.10
Original file line number Diff line number Diff line change 1414jobs :
1515 preflight :
1616 name : " Preflight Check"
17- runs-on : ubuntu-latest
17+ runs-on : ubuntu-22.04
1818 outputs :
1919 ok : ${{ steps.check.outputs.ok }}
2020 steps :
3636
3737 check_renv :
3838 name : " Check if We Need {renv}"
39- runs-on : ubuntu-latest
39+ runs-on : ubuntu-22.04
4040 needs : preflight
4141 if : ${{ needs.preflight.outputs.ok == 'true'}}
4242 outputs :
5252
5353 check_token :
5454 name : " Check SANDPAPER_WORKFLOW token"
55- runs-on : ubuntu-latest
55+ runs-on : ubuntu-22.04
5656 needs : check_renv
5757 if : ${{ needs.check_renv.outputs.needed == 'true' }}
5858 outputs :
6969 name : " Update Package Cache"
7070 needs : check_token
7171 if : ${{ needs.check_token.outputs.repo== 'true' }}
72- runs-on : ubuntu-latest
72+ runs-on : ubuntu-22.04
7373 env :
7474 GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
7575 RENV_PATHS_ROOT : ~/.local/share/renv/
Original file line number Diff line number Diff line change 1818jobs :
1919 check_token :
2020 name : " Check SANDPAPER_WORKFLOW token"
21- runs-on : ubuntu-latest
21+ runs-on : ubuntu-22.04
2222 outputs :
2323 workflow : ${{ steps.validate.outputs.wf }}
2424 repo : ${{ steps.validate.outputs.repo }}
3131
3232 update_workflow :
3333 name : " Update Workflow"
34- runs-on : ubuntu-latest
34+ runs-on : ubuntu-22.04
3535 needs : check_token
3636 if : ${{ needs.check_token.outputs.workflow == 'true' }}
3737 steps :
You can’t perform that action at this time.
0 commit comments