Skip to content

Commit b09f078

Browse files
Update dependency ubuntu to v24 (#864)
* Update dependency ubuntu to v24 | datasource | package | from | to | | -------------- | ------- | ----- | ----- | | github-runners | ubuntu | 22.04 | 24.04 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update snapcraft command --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Luca Comellini <luca.com@gmail.com>
1 parent 6f18720 commit b09f078

File tree

11 files changed

+16
-17
lines changed

11 files changed

+16
-17
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permissions:
2323
jobs:
2424
unit-tests:
2525
name: Unit Tests
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-24.04
2727
steps:
2828
- name: Checkout Repository
2929
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
@@ -43,7 +43,7 @@ jobs:
4343

4444
build-docker:
4545
name: Build Docker Image
46-
runs-on: ubuntu-22.04
46+
runs-on: ubuntu-24.04
4747
permissions:
4848
contents: write # for lucacome/draft-release to create/update release draft
4949
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
@@ -159,8 +159,7 @@ jobs:
159159

160160
- name: Setup Snapcraft
161161
run: |
162-
sudo apt-get update
163-
sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft
162+
sudo snap install snapcraft --classic
164163
mkdir -p $HOME/.cache/snapcraft/download
165164
mkdir -p $HOME/.cache/snapcraft/stage-packages
166165
if: github.ref_type == 'tag'

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ permissions:
2121
jobs:
2222
analyze:
2323
name: Analyze
24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-24.04
2525
permissions:
2626
actions: read # for github/codeql-action/init to get workflow details
2727
contents: read # for actions/checkout to fetch code

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
dependency-review:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
permissions:
1818
contents: read # for actions/checkout
1919
pull-requests: write # for actions/dependency-review-action to post comments

.github/workflows/dockerhub-description.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
dockerHubDescription:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
if: ${{ github.event.repository.fork == false }}
2121
steps:
2222
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0

.github/workflows/f5-cla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919
jobs:
2020
f5-cla:
2121
name: F5 CLA
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
permissions:
2424
actions: write
2525
contents: read

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permissions:
1818
jobs:
1919
scan:
2020
name: Fossa
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
if: ${{ github.event.repository.fork == false }}
2323
steps:
2424
- name: Checkout Repository

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
permissions:
1111
contents: read
1212
pull-requests: write
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1616
with:

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919
jobs:
2020
lint:
2121
name: Go Lint
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
steps:
2424
- name: Checkout Repository
2525
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
@@ -36,7 +36,7 @@ jobs:
3636

3737
actionlint:
3838
name: Actionlint
39-
runs-on: ubuntu-22.04
39+
runs-on: ubuntu-24.04
4040
steps:
4141
- name: Checkout Repository
4242
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
@@ -48,7 +48,7 @@ jobs:
4848

4949
markdown-lint:
5050
name: Markdown Lint
51-
runs-on: ubuntu-22.04
51+
runs-on: ubuntu-24.04
5252
steps:
5353
- name: Checkout Repository
5454
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
@@ -62,7 +62,7 @@ jobs:
6262

6363
yaml-lint:
6464
name: YAML lint
65-
runs-on: ubuntu-22.04
65+
runs-on: ubuntu-24.04
6666
steps:
6767
- name: Checkout Repository
6868
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0

.github/workflows/notifications.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
on-failure:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
2121
permissions:
2222
contents: read

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions: read-all
1313
jobs:
1414
analysis:
1515
name: Scorecard analysis
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
permissions:
1818
# Needed to upload the results to code-scanning dashboard.
1919
security-events: write

0 commit comments

Comments
 (0)