Skip to content

Commit

Permalink
Update GitHub Action ubuntu to v24 (#5271)
Browse files Browse the repository at this point in the history
Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com>
  • Loading branch information
hash-worker[bot] authored Sep 28, 2024
1 parent 3c5e670 commit bd49aeb
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

jobs:
setup:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
unit: ${{ steps.packages.outputs.unit }}
integration: ${{ steps.packages.outputs.integration }}
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
matrix: ${{ fromJSON(needs.setup.outputs.unit) }}
fail-fast: false
if: needs.setup.outputs.unit != '{"package":[],"include":[]}'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
matrix: ${{ fromJSON(needs.setup.outputs.integration) }}
fail-fast: false
if: needs.setup.outputs.integration != '{"package":[],"include":[]}'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
setup:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
sourcemaps: ${{ steps.packages.outputs.sourcemaps }}
steps:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
matrix: ${{ fromJSON(needs.setup.outputs.sourcemaps) }}
fail-fast: false
if: needs.setup.outputs.sourcemaps != '{"package":[],"include":[]}'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
id-token: write
contents: read
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
setup:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
packages: ${{ steps.packages.outputs.packages }}
steps:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
matrix: ${{ fromJSON(needs.setup.outputs.packages) }}
fail-fast: false
if: needs.setup.outputs.packages != '{"package":[],"include":[]}'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:

global:
name: Global
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-blocks-to-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name: Publish blocks to preview
jobs:
pick-blocks:
name: Pick blocks
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
block-dir-names: ${{ steps.list-block-dir-names.outputs.block-dir-names }}
steps:
Expand All @@ -32,7 +32,7 @@ jobs:

process:
name: Publish
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- pick-blocks
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-blocks-to-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: Publish blocks to production
jobs:
pick-blocks:
name: Pick blocks
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
block-dir-names: ${{ steps.list-block-dir-names.outputs.block-dir-names }}
steps:
Expand All @@ -29,7 +29,7 @@ jobs:

process:
name: Publish
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- pick-blocks
strategy:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
setup:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
unit-tests: ${{ steps.packages.outputs.unit-tests }}
integration-tests: ${{ steps.packages.outputs.integration-tests }}
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
matrix: ${{ fromJSON(needs.setup.outputs.unit-tests) }}
fail-fast: false
if: needs.setup.outputs.unit-tests != '{"package":[],"include":[]}'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [setup]
strategy:
matrix: ${{ fromJSON(needs.setup.outputs.dockers) }}
Expand All @@ -212,7 +212,7 @@ jobs:
matrix: ${{ fromJSON(needs.setup.outputs.integration-tests) }}
fail-fast: false
if: needs.setup.outputs.integration-tests != '{"package":[],"include":[]}'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down Expand Up @@ -372,7 +372,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJSON(needs.setup.outputs.publish) }}
if: needs.setup.outputs.publish != '{"package":[],"include":[]}'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout source code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down

0 comments on commit bd49aeb

Please sign in to comment.