Skip to content

Commit a402c8c

Browse files
Matt PryorMoteHue
authored andcommitted
Bump GHA action versions (azimuth-cloud#202)
1 parent 7257ca0 commit a402c8c

11 files changed

+21
-21
lines changed

.github-deploy-prod.yml.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
sudo apt install -y python3-venv python3-dev build-essential unzip git-crypt
3737

3838
- name: Checkout the config repo
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040

4141
- name: Deploy Azimuth
4242
shell: bash

.github-deploy-staging.yml.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
sudo apt install -y python3-venv python3-dev build-essential unzip git-crypt
2727

2828
- name: Checkout the config repo
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Deploy Azimuth
3232
shell: bash

.github-upgrade-check.yml.sample

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

5959
- name: Create Pull Request
6060
if: ${{ steps.release_tag.outputs.value }}
61-
uses: peter-evans/create-pull-request@v6
61+
uses: peter-evans/create-pull-request@v7
6262
with:
6363
base: main
6464
branch: ${{ steps.branch_name.outputs.value }}

.github/actions/setup/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
using: composite
4545
steps:
4646
- name: Checkout azimuth-config repo
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848
with:
4949
repository: ${{ inputs.repository }}
5050
ref: ${{ inputs.ref }}
@@ -89,10 +89,10 @@ runs:
8989
this_variable_is_never_used: ever
9090
${{ inputs.extra-vars }}
9191
92-
- name: Ensure Python 3.9
93-
uses: actions/setup-python@v4
92+
- name: Ensure Python 3.10
93+
uses: actions/setup-python@v5
9494
with:
95-
python-version: "3.9"
95+
python-version: "3.10"
9696
check-latest: true
9797

9898
- name: Set up Python virtual environment

.github/actions/test/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
./bin/run-tests
4040
4141
- name: Upload test report artifacts
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: ${{ inputs.test-report-artifact-name }}
4545
path: |
@@ -67,7 +67,7 @@ runs:
6767
if: ${{ always() }}
6868

6969
- name: Upload debug bundle
70-
uses: actions/upload-artifact@v3
70+
uses: actions/upload-artifact@v4
7171
with:
7272
name: ${{ inputs.debug-bundle-artifact-name }}
7373
path: debug-bundle.tar.gz

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out the repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Generate and update release notes
1717
uses: ./.github/actions/release-notes

.github/workflows/test-backup-restore.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
# We need to check out the code under test first in order to use local actions
2828
- name: Checkout code under test
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Set up Azimuth environment
3232
uses: ./.github/actions/setup
@@ -103,7 +103,7 @@ jobs:
103103
if: ${{ !cancelled() }}
104104

105105
- name: Upload pre-restore debug bundle
106-
uses: actions/upload-artifact@v3
106+
uses: actions/upload-artifact@v4
107107
with:
108108
name: azimuth-pre-restore-debug-bundle
109109
path: debug-bundle.tar.gz
@@ -157,7 +157,7 @@ jobs:
157157
if: ${{ always() }}
158158

159159
- name: Upload test report artifacts
160-
uses: actions/upload-artifact@v3
160+
uses: actions/upload-artifact@v4
161161
with:
162162
name: azimuth-restore-test-reports
163163
path: reports/*
@@ -172,7 +172,7 @@ jobs:
172172
if: ${{ always() }}
173173

174174
- name: Upload debug bundle
175-
uses: actions/upload-artifact@v3
175+
uses: actions/upload-artifact@v4
176176
with:
177177
name: azimuth-restore-debug-bundle
178178
path: debug-bundle.tar.gz

.github/workflows/test-ha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
# We need to check out the code under test first in order to use local actions
2323
- name: Checkout code under test
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Set up Azimuth environment
2727
uses: ./.github/actions/setup

.github/workflows/test-singlenode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
steps:
6464
# We need to check out the code under test first in order to use local actions
6565
- name: Checkout code under test
66-
uses: actions/checkout@v3
66+
uses: actions/checkout@v4
6767

6868
- name: Set up Azimuth environment
6969
uses: ./.github/actions/setup

.github/workflows/test-upgrade.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo "tag-name=${TAG_NAME}" >> "$GITHUB_OUTPUT"
3333
3434
- name: Checkout latest tag
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
ref: ${{ steps.latest-tag.outputs.tag-name }}
3838

@@ -105,7 +105,7 @@ jobs:
105105

106106
- name: Checkout code under test
107107
id: checkout-latest
108-
uses: actions/checkout@v3
108+
uses: actions/checkout@v4
109109
with:
110110
# Make sure not to remove working directories
111111
clean: false
@@ -178,7 +178,7 @@ jobs:
178178
if: ${{ always() }}
179179

180180
- name: Upload test report artifacts
181-
uses: actions/upload-artifact@v3
181+
uses: actions/upload-artifact@v4
182182
with:
183183
name: azimuth-upgrade-test-reports
184184
path: reports/*
@@ -193,7 +193,7 @@ jobs:
193193
if: ${{ always() }}
194194

195195
- name: Upload debug bundle
196-
uses: actions/upload-artifact@v3
196+
uses: actions/upload-artifact@v4
197197
with:
198198
name: azimuth-upgrade-debug-bundle
199199
path: debug-bundle.tar.gz

0 commit comments

Comments
 (0)