From 6970c68e8564c5f15bb38bcfe6062f01360b772c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jan 2026 00:49:17 +0000 Subject: [PATCH] Bump the all-actions group across 1 directory with 5 updates Bumps the all-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `7` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1` | `2` | 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/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v7) Updates `actions/create-github-app-token` from 1 to 2 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/v1...v2) --- 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/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/create-github-app-token dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/Dockerfile.yml | 10 +++++----- .github/workflows/test-workflow.yml | 16 ++++++++-------- .github/workflows/test.yml | 2 +- .../update-completed-sprint-on-issue-closed.yml | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/Dockerfile.yml b/.github/workflows/Dockerfile.yml index 148f9d4..249cbec 100644 --- a/.github/workflows/Dockerfile.yml +++ b/.github/workflows/Dockerfile.yml @@ -37,12 +37,12 @@ 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 id: image-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /tmp/image.tar.zst key: systemtest-image-${{ runner.os }}-${{ github.sha }} @@ -66,7 +66,7 @@ jobs: - name: Save image cache if: steps.image-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: /tmp/image.tar.zst key: systemtest-image-${{ runner.os }}-${{ github.sha }} @@ -78,7 +78,7 @@ jobs: - if: ${{ env.PUSH_ENABLED == 'true' }} name: Upload System Test Image - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 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 b89048a..7fc324b 100644 --- a/.github/workflows/test-workflow.yml +++ b/.github/workflows/test-workflow.yml @@ -217,7 +217,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 }} @@ -229,7 +229,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 }} @@ -238,14 +238,14 @@ jobs: - uses: stellar/actions/rust-cache@main - name: Restore system test image cache id: restore-system-test-image - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /tmp/system-test-image.tar.zst key: ${{ needs.prepare-config.outputs.system-test-image-cache-key }} - name: Restore cli image cache if: steps.restore-system-test-image.outputs.cache-hit != 'true' id: restore-cli-image - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /tmp/cli-image.tar.zst key: ${{ needs.prepare-config.outputs.cli-image-cache-key }} @@ -296,19 +296,19 @@ jobs: echo "Finished system test image extract, compressed size = $SYSTEM_SIZE bytes" - name: Save cache for cli - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: steps.restore-cli-image.outputs.cache-hit != 'true' with: path: /tmp/cli-image.tar.zst key: ${{ needs.prepare-config.outputs.cli-image-cache-key }} - name: Save cache for system test image - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: steps.restore-system-test-image.outputs.cache-hit != 'true' with: 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@v6 with: name: image-system-test path: /tmp/system-test-image.tar.zst @@ -333,7 +333,7 @@ jobs: tag: system-test-custom-amd64 enable: core,rpc - name: Download system-test image artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 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 diff --git a/.github/workflows/update-completed-sprint-on-issue-closed.yml b/.github/workflows/update-completed-sprint-on-issue-closed.yml index 00cd0f3..39afcd0 100644 --- a/.github/workflows/update-completed-sprint-on-issue-closed.yml +++ b/.github/workflows/update-completed-sprint-on-issue-closed.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Generate token id: generate_token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v2 with: app-id: ${{ secrets.GH_PROJECT_MANAGEMENT_APP_ID }} private-key: ${{ secrets.GH_PROJECT_MANAGEMENT_APP_PEM }}