Skip to content

Commit

Permalink
chore(deps): update dependency ubuntu to v24 (#3378)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 1, 2024
1 parent 246fcfd commit c65496b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/PREVIEW-ENV-DEPLOY.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
deploy-preview:
# checks that the PR isn't closed AND check whether the labeled event contains deploy-preview as substring || check whether on new commit of PR the label deploy-preview is part of label array
if: github.event.pull_request.state != 'closed' && (contains( github.event.label.name, 'deploy-preview') || contains( github.event.pull_request.labels.*.name, 'deploy-preview'))
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 20
name: deploy-preview-env-${{ matrix.product_context }}
env:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
argocd_server: argocd.int.camunda.com
conflicts:
if: always() && github.event_name == 'pull_request' && (contains( github.event.label.name, 'deploy-preview') || contains( github.event.pull_request.labels.*.name, 'deploy-preview'))
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Check PR for merge conflicts
uses: camunda/infra-global-github-actions/preview-env/conflicts@main
Expand All @@ -96,7 +96,7 @@ jobs:
comment:
if: always() && github.event_name == 'pull_request' && needs.deploy-preview.result != 'skipped'
name: create-deployment-result-summary
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [deploy-preview]
steps:
- uses: camunda/infra-global-github-actions/preview-env/comment@main
4 changes: 2 additions & 2 deletions .github/workflows/PREVIEW-ENV-TEARDOWN.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
teardown-preview:
# check whether the unlabel name was deploy-preview || check whether the PR was closed / merged and whether deploy-preview was part of the array
if: github.event.label.name == 'deploy-preview' || (github.event.action == 'closed' && contains( github.event.pull_request.labels.*.name, 'deploy-preview') )
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 20
env:
BRANCH_NAME: ${{ github.head_ref }} # head_ref = branch on PR
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
comment:
if: always() && needs.teardown-preview.result != 'skipped'
name: delete-deployment-result-summary
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [teardown-preview]
steps:
- uses: camunda/infra-global-github-actions/preview-env/comment@main

0 comments on commit c65496b

Please sign in to comment.