Skip to content

Commit d1822d9

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

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
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
@@ -204,19 +204,19 @@ jobs:
204204
# git push origin gh-pages-beta
205205
# )
206206
- name: Checkout GitHub pages branch
207-
uses: actions/checkout@v4
207+
uses: actions/checkout@v5
208208
with:
209209
ref: gh-pages-beta
210210
path: repo/
211211
- name: Download default test results
212212
# Default test results in case the integration tests time out or runner set up fails
213213
# (So that Allure report will show "unknown"/"failed" test result, instead of omitting the test)
214-
uses: actions/download-artifact@v4
214+
uses: actions/download-artifact@v5
215215
with:
216216
path: allure-default-results/
217217
name: allure-default-results-integration-test
218218
- name: Download test results
219-
uses: actions/download-artifact@v4
219+
uses: actions/download-artifact@v5
220220
with:
221221
path: allure-results/
222222
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-k8s-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/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
timeout-minutes: 60
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737
- name: Release charm libraries

.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)