From 0b6eadacf39130adcdbe1710b64c76bb82faf69f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Sep 2025 22:04:23 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 5 updates Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [aws-actions/setup-sam](https://github.com/aws-actions/setup-sam) | `819220f63fb333a9a394dd0a5cab2d8303fd17e2` | `f664fad9e12492edfc187a31f575537dfbb0ff63` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | Updates `actions/checkout` from 4 to 5 - [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/v4...v5) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `aws-actions/setup-sam` from 819220f63fb333a9a394dd0a5cab2d8303fd17e2 to f664fad9e12492edfc187a31f575537dfbb0ff63 - [Release notes](https://github.com/aws-actions/setup-sam/releases) - [Commits](https://github.com/aws-actions/setup-sam/compare/819220f63fb333a9a394dd0a5cab2d8303fd17e2...f664fad9e12492edfc187a31f575537dfbb0ff63) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/setup-sam dependency-version: f664fad9e12492edfc187a31f575537dfbb0ff63 dependency-type: direct:production dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/create-tag.yml | 4 ++-- .github/workflows/releases-production.yml | 10 +++++----- .github/workflows/test-reporter.yml | 2 +- .github/workflows/test.yml | 8 ++++---- .github/workflows/version-update.yml | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml index 0ac0b288..973ffb22 100644 --- a/.github/workflows/create-tag.yml +++ b/.github/workflows/create-tag.yml @@ -20,7 +20,7 @@ jobs: steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get version number shell: bash @@ -64,7 +64,7 @@ jobs: - name: Create tag if: env.CREATE_TAG == 'true' # run only in case CREATE_TAG is true - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | github.rest.git.createRef({ diff --git a/.github/workflows/releases-production.yml b/.github/workflows/releases-production.yml index 4be6bc17..d64b2105 100644 --- a/.github/workflows/releases-production.yml +++ b/.github/workflows/releases-production.yml @@ -32,7 +32,7 @@ jobs: version: ${{ steps.get-version.outputs.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get version number id: get-version @@ -54,11 +54,11 @@ jobs: steps: # See https://docs.aws.amazon.com/lambda/latest/dg/python-package.html#python-package-create-dependencies - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: 'lambda-v${{ needs.get-esf-version.outputs.version }}' - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.12' cache: 'pip' # caching pip dependencies @@ -98,7 +98,7 @@ jobs: BUCKET_NAME: "elastic-serverless-forwarder" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: 'lambda-v${{ needs.get-esf-version.outputs.version }}' @@ -107,7 +107,7 @@ jobs: aws-account-id: "${{ env.AWS_ACCOUNT_ID }}" aws-region: "${{ env.AWS_REGION }}" - - uses: aws-actions/setup-sam@819220f63fb333a9a394dd0a5cab2d8303fd17e2 # v2 + - uses: aws-actions/setup-sam@f664fad9e12492edfc187a31f575537dfbb0ff63 # v2 with: use-installer: true token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test-reporter.yml b/.github/workflows/test-reporter.yml index e62386db..4d53eb25 100644 --- a/.github/workflows/test-reporter.yml +++ b/.github/workflows/test-reporter.yml @@ -30,7 +30,7 @@ jobs: if: ${{ github.event.workflow_run.event == 'pull_request' }} runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: pattern: test-results* merge-multiple: true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 20dfe5d7..8dc356f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,14 +18,14 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: make license lint: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: make docker-lint coverage: @@ -34,9 +34,9 @@ jobs: steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.12' # As defined in tests/scripts/docker/run_tests.sh cache: 'pip' # caching pip dependencies diff --git a/.github/workflows/version-update.yml b/.github/workflows/version-update.yml index ad657eb5..ab69ddf9 100644 --- a/.github/workflows/version-update.yml +++ b/.github/workflows/version-update.yml @@ -17,7 +17,7 @@ jobs: steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Compare versions in share/version.py and CHANGELOG last entry shell: bash