Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[deps]: Update ubuntu to v24 #182

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build-artifacts:
name: Build artifacts
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Check out repo
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:

build-docker:
name: Build Docker images
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: build-artifacts
env:
_AZ_REGISTRY: bitwardenprod.azurecr.io
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
setup:
name: Setup
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
release-version: ${{ steps.version-output.outputs.version }}
steps:
Expand All @@ -40,7 +40,7 @@ jobs:

publish-docker:
name: Publish Docker images
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: setup
env:
_AZ_REGISTRY: bitwardenprod.azurecr.io
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
setup:
name: Setup
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
release_version: ${{ steps.version.outputs.version }}
branch-name: ${{ steps.branch.outputs.branch-name }}
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
release-github:
name: Create GitHub Release
if: ${{ inputs.release_type != 'Dry Run' }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: setup
steps:
- name: Create release
Expand All @@ -69,7 +69,7 @@ jobs:
check-failures:
name: Check for failures
if: always()
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- release-github
- setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

sast:
name: SAST scan
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check-run
permissions:
contents: read
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

quality:
name: Quality scan
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check-run
permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
check-test-secrets:
name: Check for test secrets
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
available: ${{ steps.check-test-secrets.outputs.available }}
permissions:
Expand All @@ -30,7 +30,7 @@ jobs:
testing:
name: Run tests
if: ${{ startsWith(github.head_ref, 'version_bump_') == false }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check-test-secrets
permissions:
checks: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
bump_version:
name: Bump version
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
version: ${{ steps.set-final-version-output.outputs.version }}

Expand Down
Loading