Skip to content

Commit 4fda9f9

Browse files
committed
feat: ubuntu 24.04
1 parent 08c9500 commit 4fda9f9

15 files changed

+30
-30
lines changed

packages/plugin-cicd-github/templates/workflows/deploy-to-env-basic.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -20,4 +20,4 @@ on:
2020
<%- include('fragments/on/push/to-env-branch.yml.ejs', {dv, v}) %>
2121

2222
jobs:
23-
<%- include('fragments/job/build--env-install-test-build-deploy.yml.ejs', {dv, v}) %>
23+
<%- include('fragments/job/build--env-install-test-build-deploy.yml.ejs', {dv, v}) %>

packages/plugin-cicd-github/templates/workflows/deploy-to-env.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -33,4 +33,4 @@ jobs:
3333
<%- include('fragments/build/fetch-infrastructure-env-config.yml.ejs', {dv, v}) %>
3434
<%- include('fragments/build/build-post-provision.yml.ejs', {dv, v}) %>
3535
<%- include('fragments/build/deploy.yml.ejs', {dv, v}) %>
36-
<%- include('fragments/build/migrate.yml.ejs', {dv, v}) %>
36+
<%- include('fragments/build/migrate.yml.ejs', {dv, v}) %>

packages/plugin-cicd-github/templates/workflows/deploy-to-forced-env.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -30,4 +30,4 @@ jobs:
3030
<%- include('fragments/build/install.yml.ejs', {dv, v}) %>
3131
<%- include('fragments/build/test.yml.ejs', {dv, v}) %>
3232
<%- include('fragments/build/deploy.yml.ejs', {dv, v}) %>
33-
<%- include('fragments/build/migrate.yml.ejs', {dv, v}) %>
33+
<%- include('fragments/build/migrate.yml.ejs', {dv, v}) %>

packages/plugin-cicd-github/templates/workflows/parallel-deploy-to-env-basic.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -21,4 +21,4 @@ on:
2121

2222
jobs:
2323
<%- include('fragments/job/changes.yml.ejs', {dv, v, projects}) %>
24-
<%- include('fragments/job/parallel-build--env-install-test-build-deploy.yml.ejs', {dv, v, projects}) %>
24+
<%- include('fragments/job/parallel-build--env-install-test-build-deploy.yml.ejs', {dv, v, projects}) %>

packages/plugin-cicd-github/templates/workflows/parallel-deploy-to-env-infra.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -30,4 +30,4 @@ on:
3030

3131
jobs:
3232
<%- include('fragments/job/changes.yml.ejs', {dv, v, branchToEnv: true, projects: Object.entries(layers).reduce((acc, [name, layer]) => Object.assign(acc, {[name]: {project: layer.name || name, projectPaths: computeTrackedPaths(layer, name)}}), {})}) %>
33-
<%- include('fragments/job/parallel-build-layer--env-install-provision.yml.ejs', {dv, v, layers}) %>
33+
<%- include('fragments/job/parallel-build-layer--env-install-provision.yml.ejs', {dv, v, layers}) %>

packages/plugin-cicd-github/templates/workflows/parallel-pull-request-on-feature-branch.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -21,4 +21,4 @@ on:
2121

2222
jobs:
2323
<%- include('fragments/job/changes.yml.ejs', {dv, v, projects}) %>
24-
<%- include('fragments/job/parallel-build--install-test.yml.ejs', {dv, v, projects}) %>
24+
<%- include('fragments/job/parallel-build--install-test.yml.ejs', {dv, v, projects}) %>

packages/plugin-cicd-github/templates/workflows/parallel-pull-request-to-env-basic.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -21,4 +21,4 @@ on:
2121

2222
jobs:
2323
<%- include('fragments/job/changes.yml.ejs', {dv, v, projects}) %>
24-
<%- include('fragments/job/parallel-build--env-install-test-build.yml.ejs', {dv, v, projects}) %>
24+
<%- include('fragments/job/parallel-build--env-install-test-build.yml.ejs', {dv, v, projects}) %>

packages/plugin-cicd-github/templates/workflows/parallel-pull-request-to-env-infra.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -30,4 +30,4 @@ on:
3030

3131
jobs:
3232
<%- include('fragments/job/changes.yml.ejs', {dv, v, branchToEnv: true, projects: Object.entries(layers).reduce((acc, [name, layer]) => Object.assign(acc, {[name]: {project: layer.name || name, projectPaths: computeTrackedPaths(layer, name)}}), {})}) %>
33-
<%- include('fragments/job/parallel-build-layer--env-install-test-infra.yml.ejs', {dv, v, layers}) %>
33+
<%- include('fragments/job/parallel-build-layer--env-install-test-infra.yml.ejs', {dv, v, layers}) %>

packages/plugin-cicd-github/templates/workflows/parallel-push-to-feature-branch.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -21,4 +21,4 @@ on:
2121

2222
jobs:
2323
<%- include('fragments/job/changes.yml.ejs', {dv, v, projects}) %>
24-
<%- include('fragments/job/parallel-build--install-test.yml.ejs', {dv, v, projects}) %>
24+
<%- include('fragments/job/parallel-build--install-test.yml.ejs', {dv, v, projects}) %>

packages/plugin-cicd-github/templates/workflows/project-push-to-feature-branch.yml.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
python: '3.x',
55
php: '7.1',
66
terraform: '0.13.5',
7-
os: 'ubuntu-20.04'
7+
os: 'ubuntu-24.04'
88
}; -%>
99
<% const v = {
1010
go: typeof go_version_constraint === 'undefined' ? dv.go : go_version_constraint,
@@ -20,4 +20,4 @@ on:
2020
<%- include('fragments/on/push/to-feature-branch-project.yml.ejs', {dv, v, project, projectPath}) %>
2121

2222
jobs:
23-
<%- include('fragments/job/project-build--install-test.yml.ejs', {dv, v, project, projectPath}) %>
23+
<%- include('fragments/job/project-build--install-test.yml.ejs', {dv, v, project, projectPath}) %>

0 commit comments

Comments
 (0)