Skip to content

Commit 0e42c73

Browse files
Update GitHub actions (major) (#278)
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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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-operator). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS42MC40IiwidXBkYXRlZEluVmVyIjoiNDEuNjAuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsibm90IGJ1ZyBvciBlbmhhbmNlbWVudCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Carl Csaposs <[email protected]>
1 parent 26f9f67 commit 0e42c73

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-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
@@ -203,19 +203,19 @@ jobs:
203203
# git push origin gh-pages-beta
204204
# )
205205
- name: Checkout GitHub pages branch
206-
uses: actions/checkout@v4
206+
uses: actions/checkout@v5
207207
with:
208208
ref: gh-pages-beta
209209
path: repo/
210210
- name: Download default test results
211211
# Default test results in case the integration tests time out or runner set up fails
212212
# (So that Allure report will show "unknown"/"failed" test result, instead of omitting the test)
213-
uses: actions/download-artifact@v4
213+
uses: actions/download-artifact@v5
214214
with:
215215
path: allure-default-results/
216216
name: allure-default-results-integration-test
217217
- name: Download test results
218-
uses: actions/download-artifact@v4
218+
uses: actions/download-artifact@v5
219219
with:
220220
path: allure-results/
221221
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)