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

Change Base Image to Ubuntu 22.04 #370

Merged
merged 12 commits into from
Feb 10, 2023
Prev Previous commit
Fix the CI deprecated warning.
  • Loading branch information
xusine committed Feb 9, 2023
commit 3844204943bdfd87b4caa93c76161deeff86d034
52 changes: 26 additions & 26 deletions .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
is_parent_modified: ${{ steps.set_is_parent_modified.outputs.is_parent_modified }}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: build and push
run: "./.github/scripts/build-images.sh"
env:
IMG_TAG: "debian"
- id: set_is_parent_modified
run: echo "::set-output name=is_parent_modified::${MODIFIED}"
run: echo "is_parent_modified=${MODIFIED}" >> $GITHUB_OUTPUT

java:
runs-on: ubuntu-latest
Expand All @@ -51,7 +51,7 @@ jobs:
platform: "linux/amd64,linux/arm64,linux/riscv64"
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.base-os.outputs.is_parent_modified == 'true' }}
Expand All @@ -63,7 +63,7 @@ jobs:
DF_PATH: "./commons/${{ github.job }}/${{ matrix.tag }}"
DBX_PLATFORM: ${{ matrix.platform }}
- id: set_is_parent_modified
run: echo "::set-output name=is_parent_modified::${MODIFIED}"
run: echo "is_parent_modified=${MODIFIED}" >> $GITHUB_OUTPUT

mysql:
runs-on: ubuntu-latest
Expand All @@ -78,7 +78,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.base-os.outputs.is_parent_modified == 'true' }}
Expand All @@ -90,7 +90,7 @@ jobs:
DF_PATH: "./commons/${{ github.job }}/${{ matrix.tag }}"
DBX_PLATFORM: ${{ matrix.platform }}
- id: set_is_parent_modified
run: echo "::set-output name=is_parent_modified::${MODIFIED}"
run: echo "is_parent_modified=${MODIFIED}" >> $GITHUB_OUTPUT

memcached:
runs-on: ubuntu-latest
Expand All @@ -105,7 +105,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.base-os.outputs.is_parent_modified == 'true' }}
Expand All @@ -117,7 +117,7 @@ jobs:
DF_PATH: "./commons/${{ github.job }}/${{ matrix.tag }}"
DBX_PLATFORM: ${{ matrix.platform }}
- id: set_is_parent_modified
run: echo "::set-output name=is_parent_modified::${MODIFIED}"
run: echo "is_parent_modified=${MODIFIED}" >> $GITHUB_OUTPUT

faban:
runs-on: ubuntu-latest
Expand All @@ -132,7 +132,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.java.outputs.is_parent_modified == 'true' }}
Expand All @@ -144,7 +144,7 @@ jobs:
DF_PATH: "./commons/${{ github.job }}/${{ matrix.tag }}"
DBX_PLATFORM: ${{ matrix.platform }}
- id: set_is_parent_modified
run: echo "::set-output name=is_parent_modified::${MODIFIED}"
run: echo "is_parent_modified=${MODIFIED}" >> $GITHUB_OUTPUT

spark:
runs-on: ubuntu-latest
Expand All @@ -159,7 +159,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.java.outputs.is_parent_modified == 'true' }}
Expand All @@ -171,7 +171,7 @@ jobs:
DF_PATH: "./commons/${{ github.job }}/${{ matrix.tag }}"
DBX_PLATFORM: ${{ matrix.platform }}
- id: set_is_parent_modified
run: echo "::set-output name=is_parent_modified::${MODIFIED}"
run: echo "is_parent_modified=${MODIFIED}" >> $GITHUB_OUTPUT

cassandra:
runs-on: ubuntu-latest
Expand All @@ -186,7 +186,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.java.outputs.is_parent_modified == 'true' }}
Expand All @@ -198,7 +198,7 @@ jobs:
DF_PATH: "./commons/${{ github.job }}/${{ matrix.tag }}"
DBX_PLATFORM: ${{ matrix.platform }}
- id: set_is_parent_modified
run: echo "::set-output name=is_parent_modified::${MODIFIED}"
run: echo "is_parent_modified=${MODIFIED}" >> $GITHUB_OUTPUT

hadoop:
runs-on: ubuntu-latest
Expand All @@ -213,7 +213,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.java.outputs.is_parent_modified == 'true' }}
Expand All @@ -225,7 +225,7 @@ jobs:
DF_PATH: "./commons/${{ github.job }}/${{ matrix.tag }}"
DBX_PLATFORM: ${{ matrix.platform }}
- id: set_is_parent_modified
run: echo "::set-output name=is_parent_modified::${MODIFIED}"
run: echo "is_parent_modified=${MODIFIED}" >> $GITHUB_OUTPUT

data-analytics:
runs-on: ubuntu-latest
Expand All @@ -238,7 +238,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.hadoop.outputs.is_parent_modified == 'true' }}
Expand All @@ -264,7 +264,7 @@ jobs:
platform: "linux/amd64,linux/arm64,linux/riscv64"
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.memcached.outputs.is_parent_modified == 'true' }}
Expand All @@ -287,7 +287,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.cassandra.outputs.is_parent_modified == 'true' }}
Expand All @@ -310,7 +310,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.spark.outputs.is_parent_modified == 'true' }}
Expand All @@ -334,7 +334,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.spark.outputs.is_parent_modified == 'true' }}
Expand All @@ -357,7 +357,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.base-os.outputs.is_parent_modified == 'true' }}
Expand All @@ -380,7 +380,7 @@ jobs:
platform: ["linux/amd64,linux/arm64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.faban.outputs.is_parent_modified == 'true' }}
Expand All @@ -403,7 +403,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.faban.outputs.is_parent_modified == 'true' ||
Expand All @@ -428,7 +428,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.base-os.outputs.is_parent_modified == 'true' }}
Expand All @@ -451,7 +451,7 @@ jobs:
platform: ["linux/amd64,linux/arm64,linux/riscv64"]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- if: ${{ needs.base-os.outputs.is_parent_modified == 'true' }}
Expand Down