Skip to content

Commit

Permalink
chore: remove redundant checkout steps in workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Jan 17, 2025
1 parent 6ae15d2 commit e391105
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/setup-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@ on:
docker-image-name:
required: true
type: string

jobs:
setup-environment:
runs-on: amd-runner-2204
steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Checkout Kurtosis CDK
uses: actions/checkout@v4
with:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
- '**'
workflow_dispatch: {}


jobs:
build-cdk-image:
uses: ./.github/workflows/build-cdk-image.yml
Expand All @@ -24,6 +23,9 @@ jobs:
e2e-group:
- "fork12-pessimistic"
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/workflows/setup-environment.yml
with:
Expand Down Expand Up @@ -73,6 +75,9 @@ jobs:
timeout-minutes: 30

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/workflows/setup-environment.yml
with:
Expand Down

0 comments on commit e391105

Please sign in to comment.