Skip to content

Commit 4aaaaee

Browse files
Update GitHub actions to v5 (major) (#464)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | major | `v4` -> `v5` | | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v4` -> `v5` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v5`](https://redirect.github.com/actions/checkout/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/checkout/compare/v4...v5) </details> <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v5`](https://redirect.github.com/actions/download-artifact/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 01:00 AM and 05:59 AM, only on Tuesday ( * 1-5 * * 2 ) in timezone Etc/UTC, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/canonical/mysql-router-k8s-operator). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS42MC40IiwidXBkYXRlZEluVmVyIjoiNDEuNjAuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsibm90IGJ1ZyBvciBlbmhhbmNlbWVudCJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 11d616b commit 4aaaaee

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/check_libs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
if: ${{ github.event.pull_request.head.repo.full_name == 'canonical/mysql-router-k8s-operator' }}
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929
- name: Check libs

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
timeout-minutes: 5
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
- name: Install tox & poetry
3434
run: |
3535
pipx install tox
@@ -43,7 +43,7 @@ jobs:
4343
timeout-minutes: 20
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
- name: Install tox & poetry
4848
run: |
4949
pipx install tox

.github/workflows/integration_test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 5
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Set up environment
2121
run: |
2222
sudo snap install charmcraft --classic
@@ -97,7 +97,7 @@ jobs:
9797
df --human-readable
9898
- name: Checkout
9999
timeout-minutes: 3
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
- name: Set up environment
102102
timeout-minutes: 5
103103
run: sudo snap install charmcraft --classic
@@ -108,7 +108,7 @@ jobs:
108108
go install github.com/snapcore/spread/cmd/spread@latest
109109
- name: Download packed charm(s)
110110
timeout-minutes: 5
111-
uses: actions/download-artifact@v4
111+
uses: actions/download-artifact@v5
112112
with:
113113
pattern: ${{ inputs.artifact-prefix }}-*
114114
merge-multiple: true
@@ -199,19 +199,19 @@ jobs:
199199
# git push origin gh-pages-beta
200200
# )
201201
- name: Checkout GitHub pages branch
202-
uses: actions/checkout@v4
202+
uses: actions/checkout@v5
203203
with:
204204
ref: gh-pages-beta
205205
path: repo/
206206
- name: Download default test results
207207
# Default test results in case the integration tests time out or runner set up fails
208208
# (So that Allure report will show "unknown"/"failed" test result, instead of omitting the test)
209-
uses: actions/download-artifact@v4
209+
uses: actions/download-artifact@v5
210210
with:
211211
path: allure-default-results/
212212
name: allure-default-results-integration-test
213213
- name: Download test results
214-
uses: actions/download-artifact@v4
214+
uses: actions/download-artifact@v5
215215
with:
216216
path: allure-results/
217217
pattern: allure-results-integration-test-*

.github/workflows/tiobe_scan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
timeout-minutes: 60
1919
steps:
2020
- name: Checkout the project
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Install system dependencies
2424
run: sudo apt-get update && sudo apt-get install -y python3-venv

0 commit comments

Comments
 (0)