Skip to content

Commit

Permalink
Ci fixes again and again (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
masayag authored Jul 23, 2024
1 parent be2aa1b commit bb25c2d
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
shellcheck:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install Shellcheck
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/m2k-func.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:

jobs:
build-and-push-m2k-func:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:

- uses: actions/checkout@v4
Expand All @@ -39,7 +39,6 @@ jobs:

- name: Build Image
id: build-image
if: ${{ ! inputs.it_mode }}
run: |
make WORKFLOW_ID=${{ inputs.workflow_id }} \
APPLICATION_ID=${{ inputs.application_id }} \
Expand Down Expand Up @@ -93,7 +92,7 @@ jobs:
generate-manifests:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Generate Manifests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/move2kube-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
it_mode: true

run-m2k-e2e:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mta-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
workflow_id: mta
it_mode: true
run-e2e:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mta-v6.x-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
workflow_id: mta-v6.x
it_mode: true
run-e2e:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mta-v7.x-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
workflow_id: mta-v7.x
it_mode: true
run-e2e:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
steps:
- name: Create k8s Kind Cluster
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow-executor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:

jobs:
build-and-push-image:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Log in to Red Hat Registry
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
push-image
gen-and-push-manifests:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ ifeq ($(IS_APPLICATION),true)
$(BUILD_ARGS) $(EXTRA_ARGS) \
--tag ${IMAGE_NAME}:${IMAGE_TAG} --tag ${IMAGE_NAME}:latest .
else
@$(CONTAINER_ENGINE) build -f $(DOCKERFILE) \
@cd $(WORKDIR)/ && $(CONTAINER_ENGINE) build -f $(DOCKERFILE) \
$(BUILD_ARGS) $(EXTRA_ARGS) \
--tag ${IMAGE_NAME}:${IMAGE_TAG} --tag ${IMAGE_NAME}:latest .
endif
Expand Down

0 comments on commit bb25c2d

Please sign in to comment.