File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 20
20
21
21
steps :
22
22
23
- - uses : actions/checkout@v4
23
+ - uses : actions/checkout@v5
24
24
25
25
- name : Get version number
26
26
shell : bash
64
64
65
65
- name : Create tag
66
66
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
68
68
with :
69
69
script : |
70
70
github.rest.git.createRef({
Original file line number Diff line number Diff line change 32
32
version : ${{ steps.get-version.outputs.version }}
33
33
34
34
steps :
35
- - uses : actions/checkout@v4
35
+ - uses : actions/checkout@v5
36
36
37
37
- name : Get version number
38
38
id : get-version
@@ -54,11 +54,11 @@ jobs:
54
54
steps :
55
55
# See https://docs.aws.amazon.com/lambda/latest/dg/python-package.html#python-package-create-dependencies
56
56
57
- - uses : actions/checkout@v4
57
+ - uses : actions/checkout@v5
58
58
with :
59
59
ref : ' lambda-v${{ needs.get-esf-version.outputs.version }}'
60
60
61
- - uses : actions/setup-python@v5
61
+ - uses : actions/setup-python@v6
62
62
with :
63
63
python-version : ' 3.12'
64
64
cache : ' pip' # caching pip dependencies
98
98
BUCKET_NAME : " elastic-serverless-forwarder"
99
99
100
100
steps :
101
- - uses : actions/checkout@v4
101
+ - uses : actions/checkout@v5
102
102
with :
103
103
ref : ' lambda-v${{ needs.get-esf-version.outputs.version }}'
104
104
@@ -107,7 +107,7 @@ jobs:
107
107
aws-account-id : " ${{ env.AWS_ACCOUNT_ID }}"
108
108
aws-region : " ${{ env.AWS_REGION }}"
109
109
110
- - uses : aws-actions/setup-sam@819220f63fb333a9a394dd0a5cab2d8303fd17e2 # v2
110
+ - uses : aws-actions/setup-sam@f664fad9e12492edfc187a31f575537dfbb0ff63 # v2
111
111
with :
112
112
use-installer : true
113
113
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 30
30
if : ${{ github.event.workflow_run.event == 'pull_request' }}
31
31
runs-on : ubuntu-latest
32
32
steps :
33
- - uses : actions/download-artifact@v4
33
+ - uses : actions/download-artifact@v5
34
34
with :
35
35
pattern : test-results*
36
36
merge-multiple : true
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ jobs:
18
18
runs-on : ubuntu-latest
19
19
timeout-minutes : 5
20
20
steps :
21
- - uses : actions/checkout@v4
21
+ - uses : actions/checkout@v5
22
22
- run : make license
23
23
24
24
lint :
25
25
runs-on : ubuntu-latest
26
26
timeout-minutes : 5
27
27
steps :
28
- - uses : actions/checkout@v4
28
+ - uses : actions/checkout@v5
29
29
- run : make docker-lint
30
30
31
31
coverage :
34
34
35
35
steps :
36
36
37
- - uses : actions/checkout@v4
37
+ - uses : actions/checkout@v5
38
38
39
- - uses : actions/setup-python@v5
39
+ - uses : actions/setup-python@v6
40
40
with :
41
41
python-version : ' 3.12' # As defined in tests/scripts/docker/run_tests.sh
42
42
cache : ' pip' # caching pip dependencies
Original file line number Diff line number Diff line change 17
17
18
18
steps :
19
19
20
- - uses : actions/checkout@v4
20
+ - uses : actions/checkout@v5
21
21
22
22
- name : Compare versions in share/version.py and CHANGELOG last entry
23
23
shell : bash
You can’t perform that action at this time.
0 commit comments