Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Use Ubuntu 24.04 and styler PR #1610

Merged
merged 2 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check-status.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name: rcc-status

jobs:
rcc-status:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

name: "Update commit status"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ name: rcc

jobs:
rcc-smoke:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
sha: ${{ steps.commit.outputs.sha }}
versions-matrix: ${{ steps.versions-matrix.outputs.matrix }}
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
cache-version: rcc-smoke-2
needs: check, website
# Beware of using dev pkgdown here, has brought in dev dependencies in the past
extra-packages: any::rcmdcheck r-lib/roxygen2 any::decor r-lib/styler r-lib/pkgdown deps::.
extra-packages: any::rcmdcheck r-lib/roxygen2 any::decor r-lib/styler#1235 r-lib/pkgdown deps::.

- name: Install package
run: |
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
shell: bash

rcc-smoke-check-matrix:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

name: "Check matrix"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fledge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

jobs:
check_fork:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
is_forked: ${{ steps.check.outputs.is_forked }}
steps:
Expand All @@ -33,7 +33,7 @@ jobs:
shell: bash

fledge:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: check_fork
if: needs.check_fork.outputs.is_forked == 'false'
permissions:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
set -x
gh pr create --base main --head fledge --fill-first
gh workflow run rcc -f ref=$(git rev-parse HEAD)
gh pr merge --merge --auto
gh pr merge --squash --auto
shell: bash

- name: Check release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
lock:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: dessant/lock-threads@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

jobs:
pkgdown:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

name: "pkgdown"

Expand Down
Loading