Skip to content

Commit 1f4b78a

Browse files
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](actions/checkout@v4...v5) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `aws-actions/setup-sam` from 819220f63fb333a9a394dd0a5cab2d8303fd17e2 to f664fad9e12492edfc187a31f575537dfbb0ff63 - [Release notes](https://github.com/aws-actions/setup-sam/releases) - [Commits](aws-actions/setup-sam@819220f...f664fad) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@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] <[email protected]>
1 parent 2e27dfc commit 1f4b78a

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/create-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222

23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- name: Get version number
2626
shell: bash
@@ -64,7 +64,7 @@ jobs:
6464
6565
- name: Create tag
6666
if: env.CREATE_TAG == 'true' # run only in case CREATE_TAG is true
67-
uses: actions/github-script@v7
67+
uses: actions/github-script@v8
6868
with:
6969
script: |
7070
github.rest.git.createRef({

.github/workflows/releases-production.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
version: ${{ steps.get-version.outputs.version }}
3333

3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636

3737
- name: Get version number
3838
id: get-version
@@ -54,11 +54,11 @@ jobs:
5454
steps:
5555
# See https://docs.aws.amazon.com/lambda/latest/dg/python-package.html#python-package-create-dependencies
5656

57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858
with:
5959
ref: 'lambda-v${{ needs.get-esf-version.outputs.version }}'
6060

61-
- uses: actions/setup-python@v5
61+
- uses: actions/setup-python@v6
6262
with:
6363
python-version: '3.12'
6464
cache: 'pip' # caching pip dependencies
@@ -98,7 +98,7 @@ jobs:
9898
BUCKET_NAME: "elastic-serverless-forwarder"
9999

100100
steps:
101-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v5
102102
with:
103103
ref: 'lambda-v${{ needs.get-esf-version.outputs.version }}'
104104

@@ -107,7 +107,7 @@ jobs:
107107
aws-account-id: "${{ env.AWS_ACCOUNT_ID }}"
108108
aws-region: "${{ env.AWS_REGION }}"
109109

110-
- uses: aws-actions/setup-sam@819220f63fb333a9a394dd0a5cab2d8303fd17e2 # v2
110+
- uses: aws-actions/setup-sam@f664fad9e12492edfc187a31f575537dfbb0ff63 # v2
111111
with:
112112
use-installer: true
113113
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-reporter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: ${{ github.event.workflow_run.event == 'pull_request' }}
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/download-artifact@v4
33+
- uses: actions/download-artifact@v5
3434
with:
3535
pattern: test-results*
3636
merge-multiple: true

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
runs-on: ubuntu-latest
1919
timeout-minutes: 5
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- run: make license
2323

2424
lint:
2525
runs-on: ubuntu-latest
2626
timeout-minutes: 5
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- run: make docker-lint
3030

3131
coverage:
@@ -34,9 +34,9 @@ jobs:
3434

3535
steps:
3636

37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838

39-
- uses: actions/setup-python@v5
39+
- uses: actions/setup-python@v6
4040
with:
4141
python-version: '3.12' # As defined in tests/scripts/docker/run_tests.sh
4242
cache: 'pip' # caching pip dependencies

.github/workflows/version-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919

20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
- name: Compare versions in share/version.py and CHANGELOG last entry
2323
shell: bash

0 commit comments

Comments
 (0)