diff --git a/.github/actions/build-image/action.yaml b/.github/actions/build-image/action.yaml index 6894a51e..61432a46 100644 --- a/.github/actions/build-image/action.yaml +++ b/.github/actions/build-image/action.yaml @@ -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: diff --git a/.github/actions/build-maven/action.yaml b/.github/actions/build-maven/action.yaml index 3c88e784..a0753c1e 100644 --- a/.github/actions/build-maven/action.yaml +++ b/.github/actions/build-maven/action.yaml @@ -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: diff --git a/.github/workflows/build_gateway.yaml b/.github/workflows/build_gateway.yaml index ee10ae53..409226b0 100644 --- a/.github/workflows/build_gateway.yaml +++ b/.github/workflows/build_gateway.yaml @@ -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 @@ -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 }} diff --git a/.github/workflows/build_integrations.yaml b/.github/workflows/build_integrations.yaml index cdcb16ab..ce7a8a49 100644 --- a/.github/workflows/build_integrations.yaml +++ b/.github/workflows/build_integrations.yaml @@ -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 @@ -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 }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fb67aae8..ab8504cd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 }} @@ -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 }} @@ -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 }}