Skip to content

Commit

Permalink
Fix workflow runners (#8513)
Browse files Browse the repository at this point in the history
* Fix workflow runners

* Fix workflow runners

* Fix workflow runners
  • Loading branch information
N-o-Z authored Jan 17, 2025
1 parent cf75bce commit 14afd5d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
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

0 comments on commit 14afd5d

Please sign in to comment.