Skip to content

Commit

Permalink
Back to latest
Browse files Browse the repository at this point in the history
Signed-off-by: Maurizio Porrato <[email protected]>
  • Loading branch information
mporrato committed Oct 18, 2024
1 parent b700bf9 commit 3e4a9e4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
jobs:
tox:
name: Run unit tests and linters
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
build:
name: Build and push image
runs-on: ubuntu-24.04
runs-on: ubuntu-latest

steps:
- name: Set variables
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- isv-fbc-catalog

fail-fast: false
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-signing-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on: # yamllint disable-line rule:truthy
jobs:
build:
name: Build and push signing bundle
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
outputs:
bundle_image: ${{ steps.push-bundle.outputs.pullspec }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy

jobs:
prepare-env:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
outputs:
short_sha: ${{ steps.prepare.outputs.short_sha }}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:
echo "short_sha=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT
deploy-dev:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
needs:
- prepare-env
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
--verbose
deploy-qa:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
needs:
- prepare-env
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
--verbose
deploy-stage:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
environment:
name: stage
env:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
--verbose
deploy-prod:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
environment:
name: prod
env:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
release:
name: Github release
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
permissions: write-all
needs:
- deploy-prod
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
documentation:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate docs
Expand Down

0 comments on commit 3e4a9e4

Please sign in to comment.