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

Fix workflow runners #8513

Merged
merged 3 commits into from
Jan 17, 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/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
enforce-label:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: yogevbd/enforce-label-action@a3c219da6b8fa73f6ba62b68ff09c469b3a1c024 #tag 2.2.2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close-stale-prs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
stale:
name: Close stale issues and PRs
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Close stale issues and PRs
uses: actions/stale@v8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/esti.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
name: Build and push Docker image
needs: [ check-secrets, gen-code ]
if: needs.check-secrets.outputs.secretsavailable == 'true'
runs-on: ubuntu-latest-16-cores
runs-on: ubuntu-22.04-16-cores
outputs:
tag: ${{ needs.gen-code.outputs.tag }}
steps:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
type=s3,region=us-east-1,bucket=lakefs-docker-cache,name=lakefs,mode=max

login-to-amazon-ecr:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [ check-secrets ]
if: needs.check-secrets.outputs.secretsavailable == 'true'
steps:
Expand All @@ -147,7 +147,7 @@ jobs:
unified-gc-test:
name: Test unified gc
needs: [deploy-image, login-to-amazon-ecr, build-spark3-metadata-client]
runs-on: ubuntu-latest-8-cores
runs-on: ubuntu-22.04-8-cores
services:
lakefs:
image: ${{ needs.login-to-amazon-ecr.outputs.registry }}/lakefs:${{ needs.deploy-image.outputs.tag }}
Expand Down Expand Up @@ -650,7 +650,7 @@ jobs:

build-spark3-metadata-client:
name: Build metadata client for Spark 3.x
runs-on: ubuntu-latest-8-cores
runs-on: ubuntu-22.04-8-cores
needs: [check-secrets, deploy-image, login-to-amazon-ecr]
env:
TAG: ${{ needs.deploy-image.outputs.tag }}
Expand Down Expand Up @@ -1159,7 +1159,7 @@ jobs:
needs:
- deploy-image
- login-to-amazon-ecr
runs-on: ubuntu-latest-8-cores
runs-on: ubuntu-22.04-8-cores
timeout-minutes: 20
services:
dynamodb:
Expand Down Expand Up @@ -1278,7 +1278,7 @@ jobs:
needs:
- deploy-image
- login-to-amazon-ecr
runs-on: ubuntu-latest-8-cores
runs-on: ubuntu-22.04-8-cores
timeout-minutes: 20
services:
dynamodb:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link-issue-to-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
check_pull_requests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Check linked issues
steps:
- uses: nearform/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-wrapper-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
paths-filter:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
client-change: ${{ steps.filter.outputs.client == 'true' }}
steps:
Expand Down
Loading