Skip to content

Commit

Permalink
chore(deps): update dependency ubuntu to v24
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 29, 2024
1 parent cb26853 commit e27c896
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cancel-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
cancel:
name: 'Cancel Previous Workflow Runs'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 3
steps:
# https://github.com/marketplace/actions/cancel-workflow-action
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/check-for-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
check-for-latest-update:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -40,7 +40,7 @@ jobs:
SLACK_WEBHOOK_URL_FAILING: ${{ secrets.SLACK_WEBHOOK_URL_FAILING }}

check-for-dev-update:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -65,7 +65,7 @@ jobs:
SLACK_WEBHOOK_URL_FAILING: ${{ secrets.SLACK_WEBHOOK_URL_FAILING }}

check-for-patch-dev-update:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -90,7 +90,7 @@ jobs:
SLACK_WEBHOOK_URL_FAILING: ${{ secrets.SLACK_WEBHOOK_URL_FAILING }}

check-for-integration-update:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -115,7 +115,7 @@ jobs:
SLACK_WEBHOOK_URL_FAILING: ${{ secrets.SLACK_WEBHOOK_URL_FAILING }}

report-to-slack-failure:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- check-for-latest-update
- check-for-dev-update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-test-suite-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
check-test-suite-coverage:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

# Ignore if renovate (dependency update) or if triggerred by auto update
# Needs to be in a string because the colon after chore breaks yaml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/invoke-platforms-lambda-function.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
invoke:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

defaults:
run:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/optional-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# Depending on the output we will run some or all tests as fallback
detect_jobs_to_run:
name: Detect jobs to run
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
jobs: ${{ steps.detect.outputs.jobs }}
steps:
Expand All @@ -70,7 +70,7 @@ jobs:
run: ./.github/workflows/scripts/detect-jobs-to-run.js <<<'${{ steps.files.outputs.all }}'

report-to-slack-success:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- community-generators

Expand All @@ -89,7 +89,7 @@ jobs:
run: bash .github/scripts/slack-workflow-status.sh "(Optional tests) :white_check_mark:"

report-to-slack-failure:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- community-generators

Expand All @@ -116,7 +116,7 @@ jobs:
matrix:
generator: [prisma-dbml-generator, typegraphql-prisma, prisma-json-schema-generator, prisma-nestjs-graphql]
clientEngine: ['library', 'binary']
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

env:
DB_URL_COMMUNITY_GENERATOR_TYPEGRAPHQL_PRISMA: ${{ secrets.DB_URL_COMMUNITY_GENERATOR_TYPEGRAPHQL_PRISMA }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
rebase:
name: Rebase
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout the latest code
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# Depending on the output we will run some or all tests as fallback
detect_jobs_to_run:
name: Detect jobs to run
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
jobs: ${{ steps.detect.outputs.jobs }}
steps:
Expand All @@ -82,7 +82,7 @@ jobs:

confirm_all_jobs_have_run:
name: Confirm all jobs have run
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
# One-liner to extract updated list to update this:
# python -c "import yaml; print('\n'.join([' - ' + job for job in yaml.safe_load(open('test.yaml'))['jobs'] if job not in ['confirm_all_jobs_have_run', 'report-to-slack-success', 'report-to-slack-failure', 'detect_jobs_to_run']]))"
needs:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- run: echo "Ok"

report-to-slack-success:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
# One-liner to extract updated list to update this:
# python -c "import yaml; print('\n'.join([' - ' + job for job in yaml.safe_load(open('test.yaml'))['jobs'] if job not in ['confirm_all_jobs_have_run', 'report-to-slack-success', 'report-to-slack-failure', 'detect_jobs_to_run']]))"
needs:
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
run: bash .github/scripts/slack-workflow-status.sh ":white_check_mark:"

report-to-slack-failure:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
# One-liner to extract updated list to update this:
# python -c "import yaml; print('\n'.join([' - ' + job for job in yaml.safe_load(open('test.yaml'))['jobs'] if job not in ['confirm_all_jobs_have_run', 'report-to-slack-success', 'report-to-slack-failure', 'detect_jobs_to_run']]))"
needs:
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-20.04-amd64-openssl-1.1.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG UBUNTU_VERSION="20.04"
ARG UBUNTU_VERSION="24.04"

FROM ubuntu:${UBUNTU_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-22.04-amd64-openssl-1.1.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
# Regression test for: https://github.com/prisma/prisma/issues/25101

ARG UBUNTU_VERSION="22.04"
ARG UBUNTU_VERSION="24.04"

FROM ubuntu:${UBUNTU_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-22.04-amd64-openssl-3.0.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG UBUNTU_VERSION="22.04"
ARG UBUNTU_VERSION="24.04"

FROM ubuntu:${UBUNTU_VERSION}

Expand Down

0 comments on commit e27c896

Please sign in to comment.