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

chore(ci): pin ubuntu version #299

Merged
merged 1 commit into from
Jan 21, 2025
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/docs_cli_and_api_partials_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
check:
name: Partials checker
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Install werf build dependencies
run: sudo apt-get install -y libbtrfs-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
GOFLAGS: -mod=readonly
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release-please:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: werf/third-party-release-please-action@werf
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
directory: [server]
os: [ubuntu-latest]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
needs:
- tests
- e2e_tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trdl_publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
publish:
name: Publish release channels using trdl server
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Publish client channels
uses: werf/trdl-vault-actions/publish@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trdl_releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
release:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
name: Perform trdl release using trdl server
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Release client
uses: werf/trdl-vault-actions/release@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website_broken_links_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
check_links:
container: jekyll/builder:3
name: Links checker
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website_converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
converge:
name: Converge site to Production
runs-on: ubuntu-latest-4-cores
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
jobs:
converge:
name: Converge to Test
runs-on: ubuntu-latest-4-cores
runs-on: ubuntu-22.04
if: github.event.label.name == 'test docs' || contains( github.event.pull_request.labels.*.name, 'test docs' )
steps:
- name: Checkout code
Expand Down
Loading