Skip to content

Commit b1e5351

Browse files
authored
update runners (#968)
1 parent 9b335bf commit b1e5351

12 files changed

+18
-18
lines changed

.github/workflows/cache-hubval-deps.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build-deps-cache-on-main:
1212
if: ${{ github.repository_owner == 'CDCgov' }}
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-latest
1414
env:
1515
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1616

@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: r-lib/actions/setup-r@v2
2121
with:
22-
install-r: false
22+
install-r: true
2323
use-public-rspm: true
2424
extra-repositories: 'https://hubverse-org.r-universe.dev'
2525

.github/workflows/create-baseline.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
generate-baseline-forecasts:
99
if: ${{ github.repository_owner == 'CDCgov' }}
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-latest
1111
env:
1212
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1313
steps:
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup R
2525
uses: r-lib/actions/setup-r@v2
2626
with:
27-
install-r: false
27+
install-r: true
2828
use-public-rspm: true
2929

3030
- name: Install dependencies

.github/workflows/create-ensemble.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
jobs:
1111
generate-covidhub-ensemble:
1212
if: ${{ github.repository_owner == 'CDCgov' }}
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-latest
1414
env:
1515
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1616
steps:
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525
- uses: r-lib/actions/setup-r@v2
2626
with:
27-
install-r: false
27+
install-r: true
2828
use-public-rspm: true
2929

3030
- name: Install system dependencies

.github/workflows/dispatch-covidhub-internal-reports.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
update-webpage-data:
1414
if: ${{ github.repository_owner == 'CDCgov' }}
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-latest
1616
steps:
1717
- name: Generate Installation Token
1818
id: generate_token

.github/workflows/dispatch-covidhub-reports.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
update-visualization-data:
1313
if: ${{ github.repository_owner == 'CDCgov' }}
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Generate Installation Token
1717
id: get_token

.github/workflows/hubverse-aws-upload.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
upload:
1919
# Don't run on forked repositories
2020
if: github.event.repository.fork != true
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-latest
2222

2323
steps:
2424
- name: Checkout

.github/workflows/labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
labeler:
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-latest
99
permissions:
1010
contents: read
1111
pull-requests: write

.github/workflows/merge-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
approve-and-merge-pr:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-latest
1212
if: github.event.workflow_run.conclusion == 'success'
1313
permissions:
1414
contents: write

.github/workflows/update-authorized-users.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
update-users-list:
1414
if: ${{ github.repository_owner == 'CDCgov' }}
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-latest
1616
steps:
1717
- name: Generate Installation Token
1818
id: get_token
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup R
2828
uses: r-lib/actions/setup-r@v2
2929
with:
30-
install-r: false
30+
install-r: true
3131
use-public-rspm: true
3232

3333
- name: Install dependencies

.github/workflows/validate-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
validate-hub-config:
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-latest
1919
env:
2020
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
2121
PR_NUMBER: ${{ github.event.number }}
@@ -26,7 +26,7 @@ jobs:
2626

2727
- uses: r-lib/actions/setup-r@v2
2828
with:
29-
install-r: false
29+
install-r: true
3030
use-public-rspm: true
3131
extra-repositories: 'https://hubverse-org.r-universe.dev'
3232

0 commit comments

Comments
 (0)