Skip to content

Commit a99a625

Browse files
committed
Updating github-config
1 parent 7f55763 commit a99a625

13 files changed

+23
-23
lines changed

.github/workflows/approve-bot-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
download:
1111
name: Download PR Artifact
1212
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }}
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
outputs:
1515
pr-author: ${{ steps.pr-data.outputs.author }}
1616
pr-number: ${{ steps.pr-data.outputs.number }}
@@ -32,7 +32,7 @@ jobs:
3232
name: Approve Bot PRs
3333
needs: download
3434
if: ${{ needs.download.outputs.pr-author == 'paketo-bot' || needs.download.outputs.pr-author == 'dependabot[bot]' }}
35-
runs-on: ubuntu-22.04
35+
runs-on: ubuntu-24.04
3636
steps:
3737
- name: Check Commit Verification
3838
id: unverified-commits

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
analyze:
1313
name: Analyze
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515

1616
strategy:
1717
fail-fast: false

.github/workflows/create-draft-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency: release
1717
jobs:
1818
unit:
1919
name: Unit Tests
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
outputs:
2222
builders: ${{ steps.builders.outputs.builders }}
2323
steps:
@@ -39,7 +39,7 @@ jobs:
3939
4040
integration:
4141
name: Integration Tests
42-
runs-on: ubuntu-22.04
42+
runs-on: ubuntu-24.04
4343
needs: unit
4444
strategy:
4545
matrix:
@@ -59,7 +59,7 @@ jobs:
5959

6060
release:
6161
name: Release
62-
runs-on: ubuntu-22.04
62+
runs-on: ubuntu-24.04
6363
needs: integration
6464
steps:
6565
- name: Setup Go
@@ -144,7 +144,7 @@ jobs:
144144
145145
failure:
146146
name: Alert on Failure
147-
runs-on: ubuntu-22.04
147+
runs-on: ubuntu-24.04
148148
needs: [ unit, integration, release ]
149149
if: ${{ always() && needs.unit.result == 'failure' || needs.integration.result == 'failure' || needs.release.result == 'failure' }}
150150
steps:

.github/workflows/label-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency: pr_labels_${{ github.event.number }}
1515
jobs:
1616
autolabel:
1717
name: Ensure Minimal Semver Labels
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Check Minimal Semver Labels
2121
uses: mheap/github-action-required-labels@v3

.github/workflows/lint-yaml.yml

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

99
jobs:
1010
lintYaml:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- uses: actions/checkout@v3
1414

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
golangci:
1313
name: lint
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- name: Setup Go
1717
uses: actions/setup-go@v3

.github/workflows/publish-releases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
jobs:
1212
publish:
1313
name: Publish
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- name: Publish Draft Release With Highest Semantic Version
1717
id: drafts
@@ -23,7 +23,7 @@ jobs:
2323

2424
failure:
2525
name: Alert on Failure
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-24.04
2727
needs: [ publish ]
2828
if: ${{ always() && needs.publish.result == 'failure' }}
2929
steps:

.github/workflows/push-buildpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
push:
1212
name: Push
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515

1616
- name: Checkout
@@ -103,7 +103,7 @@ jobs:
103103

104104
failure:
105105
name: Alert on Failure
106-
runs-on: ubuntu-22.04
106+
runs-on: ubuntu-24.04
107107
needs: [push]
108108
if: ${{ always() && needs.push.result == 'failure' }}
109109
steps:

.github/workflows/synchronize-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
synchronize:
1111
name: Synchronize Labels
1212
runs-on:
13-
- ubuntu-22.04
13+
- ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v3
1616
- uses: micnncim/action-label-syncer@v1

.github/workflows/test-pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
unit:
1515
name: Unit Tests
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
outputs:
1818
builders: ${{ steps.builders.outputs.builders }}
1919
steps:
@@ -41,7 +41,7 @@ jobs:
4141
4242
integration:
4343
name: Integration Tests with Builders
44-
runs-on: ubuntu-22.04
44+
runs-on: ubuntu-24.04
4545
needs: unit
4646
strategy:
4747
matrix:
@@ -64,7 +64,7 @@ jobs:
6464
roundup:
6565
name: Integration Tests
6666
if: ${{ always() }}
67-
runs-on: ubuntu-22.04
67+
runs-on: ubuntu-24.04
6868
needs: integration
6969
steps:
7070
- run: |
@@ -79,7 +79,7 @@ jobs:
7979
8080
upload:
8181
name: Upload Workflow Event Payload
82-
runs-on: ubuntu-22.04
82+
runs-on: ubuntu-24.04
8383
steps:
8484
- name: Upload Artifact
8585
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)