Skip to content

Commit

Permalink
updating workflows to ubuntu 24.04 to use python3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
deusebio committed Nov 22, 2024
1 parent c0a3207 commit 7b23c09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to-aks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- cron: "17 0 * * 2"
jobs:
preprocess-input:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
processed_bundle_versions: ${{ steps.process_bundle_versions.outputs.bundle_versions }}
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
deploy-ckf-to-aks:
needs: preprocess-input
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
bundle_version: ${{ fromJSON(needs.preprocess-input.outputs.processed_bundle_versions) }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to-eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- cron: "23 0 * * 2"
jobs:
preprocess-input:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
processed_bundle_versions: ${{ steps.process_bundle_versions.outputs.bundle_versions }}
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
deploy-ckf-to-eks:
needs: preprocess-input
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
bundle_version: ${{ fromJSON(needs.preprocess-input.outputs.processed_bundle_versions) }}
Expand Down

0 comments on commit 7b23c09

Please sign in to comment.