Skip to content

Commit

Permalink
🐛 ci mv checkout from action to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhir committed Sep 2, 2024
1 parent 66eddcf commit 9bc51cf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/actions/build-image/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ inputs:
runs:
using: "composite"
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Download a single artifact
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
Expand Down
2 changes: 0 additions & 2 deletions .github/actions/build-maven/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ inputs:
runs:
using: "composite"
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up JDK
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
build-maven:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/build-maven
with:
module: refarch-gateway
Expand All @@ -19,6 +21,8 @@ jobs:
needs: build-maven
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/build-image
with:
registry-username: ${{ github.actor }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_integrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
build-maven:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/build-maven
with:
module: refarch-integrations
Expand All @@ -24,6 +26,8 @@ jobs:
- name: s3-integration-rest-service
path: ./refarch-integrations/refarch-s3-integration/refarch-s3-integration-rest/refarch-s3-integration-rest-service
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/build-image
with:
registry-username: ${{ github.actor }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
build-maven:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/build-maven
with:
module: ${{ inputs.module }}
Expand All @@ -45,6 +47,8 @@ jobs:
needs: build-maven
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/build-image
with:
registry-username: ${{ github.actor }}
Expand All @@ -65,6 +69,8 @@ jobs:
- name: s3-integration-rest-service
path: ./refarch-integrations/refarch-s3-integration/refarch-s3-integration-rest/refarch-s3-integration-rest-service
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/build-image
with:
registry-username: ${{ github.actor }}
Expand Down

0 comments on commit 9bc51cf

Please sign in to comment.