Skip to content

Commit a4980d6

Browse files
Update GitHub actions to v5 (#1090)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 51752e6 commit a4980d6

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
timeout-minutes: 5
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
- name: Install tox & poetry
4040
run: |
4141
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
@@ -207,19 +207,19 @@ jobs:
207207
# git push origin gh-pages-beta
208208
# )
209209
- name: Checkout GitHub pages branch
210-
uses: actions/checkout@v4
210+
uses: actions/checkout@v5
211211
with:
212212
ref: gh-pages-beta
213213
path: repo/
214214
- name: Download default test results
215215
# Default test results in case the integration tests time out or runner set up fails
216216
# (So that Allure report will show "unknown"/"failed" test result, instead of omitting the test)
217-
uses: actions/download-artifact@v4
217+
uses: actions/download-artifact@v5
218218
with:
219219
path: allure-default-results/
220220
name: allure-default-results-integration-test
221221
- name: Download test results
222-
uses: actions/download-artifact@v4
222+
uses: actions/download-artifact@v5
223223
with:
224224
path: allure-results/
225225
pattern: allure-results-integration-test-*

.github/workflows/lib-check.yaml

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

.github/workflows/tiobe_scan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Create and activate virtual environment
1919
run: |

0 commit comments

Comments
 (0)