From 07e0f37f9adaad0f918bb507fea6e1702dea9957 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 30 Nov 2025 02:12:27 +0000 Subject: [PATCH] Bump the all-actions group across 1 directory with 3 updates Bumps the all-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/Dockerfile.yml | 6 +++--- .github/workflows/test-workflow.yml | 8 ++++---- .github/workflows/test.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/Dockerfile.yml b/.github/workflows/Dockerfile.yml index 148f9d4..7141c09 100644 --- a/.github/workflows/Dockerfile.yml +++ b/.github/workflows/Dockerfile.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/test-workflow.yml b/.github/workflows/test-workflow.yml index 7397b8c..4044e7c 100644 --- a/.github/workflows/test-workflow.yml +++ b/.github/workflows/test-workflow.yml @@ -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 }} @@ -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 }} @@ -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 @@ -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/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a75212f..3045dbf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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