File tree Expand file tree Collapse file tree 11 files changed +21
-21
lines changed Expand file tree Collapse file tree 11 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 36
36
sudo apt install -y python3-venv python3-dev build-essential unzip git-crypt
37
37
38
38
- name: Checkout the config repo
39
- uses: actions/checkout@v3
39
+ uses: actions/checkout@v4
40
40
41
41
- name: Deploy Azimuth
42
42
shell: bash
Original file line number Diff line number Diff line change 26
26
sudo apt install -y python3-venv python3-dev build-essential unzip git-crypt
27
27
28
28
- name: Checkout the config repo
29
- uses: actions/checkout@v3
29
+ uses: actions/checkout@v4
30
30
31
31
- name: Deploy Azimuth
32
32
shell: bash
Original file line number Diff line number Diff line change 58
58
59
59
- name: Create Pull Request
60
60
if: ${{ steps.release_tag.outputs.value }}
61
- uses: peter-evans/create-pull-request@v6
61
+ uses: peter-evans/create-pull-request@v7
62
62
with:
63
63
base: main
64
64
branch: ${{ steps.branch_name.outputs.value }}
Original file line number Diff line number Diff line change 44
44
using : composite
45
45
steps :
46
46
- name : Checkout azimuth-config repo
47
- uses : actions/checkout@v3
47
+ uses : actions/checkout@v4
48
48
with :
49
49
repository : ${{ inputs.repository }}
50
50
ref : ${{ inputs.ref }}
@@ -89,10 +89,10 @@ runs:
89
89
this_variable_is_never_used: ever
90
90
${{ inputs.extra-vars }}
91
91
92
- - name : Ensure Python 3.9
93
- uses : actions/setup-python@v4
92
+ - name : Ensure Python 3.10
93
+ uses : actions/setup-python@v5
94
94
with :
95
- python-version : " 3.9 "
95
+ python-version : " 3.10 "
96
96
check-latest : true
97
97
98
98
- name : Set up Python virtual environment
Original file line number Diff line number Diff line change 39
39
./bin/run-tests
40
40
41
41
- name : Upload test report artifacts
42
- uses : actions/upload-artifact@v3
42
+ uses : actions/upload-artifact@v4
43
43
with :
44
44
name : ${{ inputs.test-report-artifact-name }}
45
45
path : |
67
67
if : ${{ always() }}
68
68
69
69
- name : Upload debug bundle
70
- uses : actions/upload-artifact@v3
70
+ uses : actions/upload-artifact@v4
71
71
with :
72
72
name : ${{ inputs.debug-bundle-artifact-name }}
73
73
path : debug-bundle.tar.gz
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Check out the repository
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
16
16
- name : Generate and update release notes
17
17
uses : ./.github/actions/release-notes
Original file line number Diff line number Diff line change 26
26
steps :
27
27
# We need to check out the code under test first in order to use local actions
28
28
- name : Checkout code under test
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
31
31
- name : Set up Azimuth environment
32
32
uses : ./.github/actions/setup
@@ -103,7 +103,7 @@ jobs:
103
103
if : ${{ !cancelled() }}
104
104
105
105
- name : Upload pre-restore debug bundle
106
- uses : actions/upload-artifact@v3
106
+ uses : actions/upload-artifact@v4
107
107
with :
108
108
name : azimuth-pre-restore-debug-bundle
109
109
path : debug-bundle.tar.gz
@@ -157,7 +157,7 @@ jobs:
157
157
if : ${{ always() }}
158
158
159
159
- name : Upload test report artifacts
160
- uses : actions/upload-artifact@v3
160
+ uses : actions/upload-artifact@v4
161
161
with :
162
162
name : azimuth-restore-test-reports
163
163
path : reports/*
@@ -172,7 +172,7 @@ jobs:
172
172
if : ${{ always() }}
173
173
174
174
- name : Upload debug bundle
175
- uses : actions/upload-artifact@v3
175
+ uses : actions/upload-artifact@v4
176
176
with :
177
177
name : azimuth-restore-debug-bundle
178
178
path : debug-bundle.tar.gz
Original file line number Diff line number Diff line change 21
21
steps :
22
22
# We need to check out the code under test first in order to use local actions
23
23
- name : Checkout code under test
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
26
26
- name : Set up Azimuth environment
27
27
uses : ./.github/actions/setup
Original file line number Diff line number Diff line change 63
63
steps :
64
64
# We need to check out the code under test first in order to use local actions
65
65
- name : Checkout code under test
66
- uses : actions/checkout@v3
66
+ uses : actions/checkout@v4
67
67
68
68
- name : Set up Azimuth environment
69
69
uses : ./.github/actions/setup
Original file line number Diff line number Diff line change 32
32
echo "tag-name=${TAG_NAME}" >> "$GITHUB_OUTPUT"
33
33
34
34
- name : Checkout latest tag
35
- uses : actions/checkout@v3
35
+ uses : actions/checkout@v4
36
36
with :
37
37
ref : ${{ steps.latest-tag.outputs.tag-name }}
38
38
@@ -105,7 +105,7 @@ jobs:
105
105
106
106
- name : Checkout code under test
107
107
id : checkout-latest
108
- uses : actions/checkout@v3
108
+ uses : actions/checkout@v4
109
109
with :
110
110
# Make sure not to remove working directories
111
111
clean : false
@@ -178,7 +178,7 @@ jobs:
178
178
if : ${{ always() }}
179
179
180
180
- name : Upload test report artifacts
181
- uses : actions/upload-artifact@v3
181
+ uses : actions/upload-artifact@v4
182
182
with :
183
183
name : azimuth-upgrade-test-reports
184
184
path : reports/*
@@ -193,7 +193,7 @@ jobs:
193
193
if : ${{ always() }}
194
194
195
195
- name : Upload debug bundle
196
- uses : actions/upload-artifact@v3
196
+ uses : actions/upload-artifact@v4
197
197
with :
198
198
name : azimuth-upgrade-debug-bundle
199
199
path : debug-bundle.tar.gz
You can’t perform that action at this time.
0 commit comments