Skip to content

Commit

Permalink
deps: update GitHub actions runner base image to Ubuntu 24.04 (#735)
Browse files Browse the repository at this point in the history
* Upgrade runner base image to Ubuntu 24-04
* Schedule dependency updates for Monday morning

---------

Signed-off-by: Daniel Weiße <[email protected]>
  • Loading branch information
daniel-weisse committed Sep 27, 2024
1 parent 2667405 commit aa61a7e
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
check:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-update-reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
pull-request:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
linkChecker:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:
golangci:
name: lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container: ghcr.io/edgelesssys/edgelessrt-dev:ci
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: ghcr.io/edgelesssys/edgelessrt-dev:ci

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-cli-reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
publish-to-docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: ghcr.io/edgelesssys/edgelessrt-dev:ci

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

jobs:
vale:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down
9 changes: 6 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,17 @@
"pin",
"pinDigest",
"rollback"
]
],
"schedule": ["before 8am on monday"]
},
{
"groupName": "Node dependencies",
"matchLanguages": [
"js",
"node"
],
"prPriority": -20
"prPriority": -20,
"schedule": ["before 8am on monday"]
},
{
"groupName": "GitHub action dependencies",
Expand All @@ -65,7 +67,8 @@
"lockFileMaintenance",
"rollback",
"bump"
]
],
"schedule": ["before 8am on monday"]
}
]
}

0 comments on commit aa61a7e

Please sign in to comment.