Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
echo "CERT_MANAGER_VERSION=${{ inputs.certmanager_version }}" >> $GITHUB_ENV

- name: Checkout integration-tests
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: sdcio/integration-tests
path: integration-tests

# Checkout config-server with specific tag if version is not v0.0.0
# next checkout job will be skipped if this is the case
- name: Checkout config-server
uses: actions/checkout@v4
uses: actions/checkout@v5
if: "!contains(env.CONFIG_VERSION, 'v0.0.0')"
with:
ref: ${{ env.CONFIG_VERSION }}
Expand All @@ -59,7 +59,7 @@ jobs:
# Checkout config-server main branch IF tag is v0.0.0
# previous checkout job will be skipped if this is the case
- name: Checkout config-server
uses: actions/checkout@v4
uses: actions/checkout@v5
if: "contains(env.CONFIG_VERSION, 'v0.0.0')"
with:
path: config-server
Expand Down