Skip to content

Commit

Permalink
Update GitHub CI run image
Browse files Browse the repository at this point in the history
GitHub runs include this warning

    The Ubuntu-20.04 brownout takes place from 2025-02-01.
    For more details, see actions/runner-images#11101

Let's try not to depend on particular image for these jobs. The exact
image *usually* does not matter and we don't pin image for all the other
jobs.
  • Loading branch information
findepi committed Feb 14, 2025
1 parent 25b2a92 commit 839e8ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ on:
jobs:
# Check license header
license-header-check:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
name: Check License Header
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
test-datafusion-pyarrow:
name: cargo test pyarrow (amd64)
needs: linux-build-lib
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
container:
image: amd64/rust:bullseye # Workaround https://github.com/actions/setup-python/issues/721
steps:
Expand Down

0 comments on commit 839e8ba

Please sign in to comment.