Skip to content

Commit

Permalink
chore(ci): change image from ubuntu-24.04 to ubunut-latest (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
danceratopz authored Oct 1, 2024
1 parent 6968156 commit 1675bda
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
evmone-coverage-diff:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
strategy:
matrix:
driver: [retesteth, native]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
deploy:
if: github.repository_owner == 'ethereum' # don't run on forks
runs-on: ubuntu-24.04
runs-on: ubuntu-latest

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
deploy:
if: github.repository_owner == 'ethereum' # don't run on forks
runs-on: ubuntu-24.04
runs-on: ubuntu-latest

steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fixtures.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
features:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
outputs:
features: ${{ steps.parse.outputs.features }}
steps:
Expand All @@ -20,7 +20,7 @@ jobs:
echo "features=$(grep -Po "^[0-9a-zA-Z_\-]+" ./.github/configs/feature.yaml | jq -R . | jq -cs .)" >> "$GITHUB_OUTPUT"
build:
needs: features
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
strategy:
matrix:
name: ${{ fromJson(needs.features.outputs.features) }}
Expand All @@ -32,7 +32,7 @@ jobs:
with:
release_name: ${{ matrix.name }}
release:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/')
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fixtures_feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
feature-names:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
outputs:
names: ${{ steps.feature-name.outputs.names }}
steps:
Expand All @@ -23,7 +23,7 @@ jobs:
echo names=${names}
echo names=${names} >> "$GITHUB_OUTPUT"
build:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
needs: feature-names
strategy:
matrix:
Expand All @@ -36,7 +36,7 @@ jobs:
with:
release_name: ${{ matrix.feature }}
release:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/')
steps:
Expand Down

0 comments on commit 1675bda

Please sign in to comment.