Skip to content
Closed
Show file tree
Hide file tree
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/Dockerfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
outputs:
push_enabled: ${{ env.PUSH_ENABLED }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ env.HEAD_SHA }}
- name: Restore image cache
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

- if: ${{ env.PUSH_ENABLED == 'true' }}
name: Upload System Test Image
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: image-Dockerfile
path: /tmp/image.tar
Expand All @@ -94,7 +94,7 @@ jobs:
runs-on: ubuntu-latest
if: needs.build.outputs.push_enabled == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ env.HEAD_SHA }}
- id: push
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:
SYSTEM_TEST_IMAGE: ${{ needs.prepare-config.outputs.system-test-image }}
STELLAR_CLI_STAGED_IMAGE: ${{ needs.prepare-config.outputs.stellar-cli-staged-image }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
repository: stellar/system-test
ref: ${{ inputs.system-test-git-ref }}
Expand All @@ -217,7 +217,7 @@ jobs:
rm -rf $GITHUB_WORKSPACE/system-test/js-stellar-sdk;

- if: inputs.js-stellar-sdk-repo != ''
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ inputs.js-stellar-sdk-repo }}
ref: ${{ inputs.js-stellar-sdk-ref }}
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
path: /tmp/system-test-image.tar.zst
key: ${{ needs.prepare-config.outputs.system-test-image-cache-key }}
- name: save file to artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: image-system-test
path: /tmp/system-test-image.tar.zst
Expand All @@ -321,7 +321,7 @@ jobs:
tag: rpc-custom-amd64
enable: core,rpc
- name: Download system-test image artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: image-system-test
path: /tmp/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
systems-test:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: "stellar/system-test"
- uses: stellar/quickstart@main
Expand Down