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 Renovate to update GitHub actions #1263

Merged
merged 2 commits into from
Dec 19, 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
5 changes: 0 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@ updates:
directory: "/model-server"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
open-pull-requests-limit: 20
directory: "/"
schedule:
interval: "daily"
# We use the default versioning strategy for npm (increase for apps and widen for libraries),
# so that clients are free to select an appropriate version from the allowed range, when they use one of the libraries.
- package-ecosystem: "npm"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 60

permissions:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
category: detekt

test-model-api-gen-gradle:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK
Expand All @@ -104,7 +104,7 @@ jobs:
run: model-api-gen-gradle-test/ci.sh

test-model-client-js:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK
Expand All @@ -124,7 +124,7 @@ jobs:
run: model-client-js-test/ci.sh

test-bulk-model-sync-gradle:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:

jobs:
dependabot:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '[0-9]+.[0-9]+.0' # New Major or Minor Releases
jobs:
docs:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout Project
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dry-run-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
lint-commits:
name: Lint PR commits
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -16,7 +16,7 @@ jobs:

test-release:
name: Dry-run semantic-release
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
pre-commit:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -21,7 +21,7 @@ jobs:
- uses: pre-commit/[email protected]

openapi-linting:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Clone repo
uses: actions/checkout@v4
Expand All @@ -32,7 +32,7 @@ jobs:
continue-on-error: true

openapi-breaking-changes:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
pull-requests: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mps-compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build-mps-components:

runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 60

strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
newRelease:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 60
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
release:
name: Run semantic release
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"pre-commit",
"gradle-wrapper",
"nvm",
"github-actions",
],
}
Loading