Skip to content

Commit a96343e

Browse files
chore(deps): Update actions to v5 (main) (major) (#9482)
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 - "on Wednesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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/hypermodeinc/dgraph). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS42MC40IiwidXBkYXRlZEluVmVyIjoiNDEuNzEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent e38a4bf commit a96343e

15 files changed

Lines changed: 22 additions & 22 deletions

.github/workflows/cd-dgraph.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: warp-ubuntu-latest-x64-4x
2525
timeout-minutes: 15
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
ref: "${{ github.event.inputs.releasetag }}"
3030
- name: Set up Go
@@ -124,7 +124,7 @@ jobs:
124124
runs-on: warp-ubuntu-latest-arm64-4x
125125
timeout-minutes: 15
126126
steps:
127-
- uses: actions/checkout@v4
127+
- uses: actions/checkout@v5
128128
with:
129129
ref: "${{ github.event.inputs.releasetag }}"
130130
- name: Set up Go
@@ -225,7 +225,7 @@ jobs:
225225
runs-on: warp-ubuntu-latest-x64-4x
226226
timeout-minutes: 15
227227
steps:
228-
- uses: actions/checkout@v4
228+
- uses: actions/checkout@v5
229229
with:
230230
ref: "${{ github.event.inputs.releasetag }}"
231231
- name: Set Dgraph Release Version
@@ -250,13 +250,13 @@ jobs:
250250

251251
# Download AMD64 Tar File
252252
- name: Download Dgraph AMD64 Tar
253-
uses: actions/download-artifact@v4
253+
uses: actions/download-artifact@v5
254254
with:
255255
name: dgraph-docker-amd64
256256

257257
# Download Dgraph ARM64 Tar File
258258
- name: Download ARM64 Tar
259-
uses: actions/download-artifact@v4
259+
uses: actions/download-artifact@v5
260260
with:
261261
name: dgraph-docker-arm64
262262

@@ -273,7 +273,7 @@ jobs:
273273
# Download Standalone AMD64 Tar File
274274
- name: Download Standalone AMD64 Tar
275275
if: inputs.custom-build == false
276-
uses: actions/download-artifact@v4
276+
uses: actions/download-artifact@v5
277277
with:
278278
name: dgraph-standalone-amd64
279279

@@ -286,7 +286,7 @@ jobs:
286286
# Download Standalone ARM64 Tar File
287287
- name: Download Standalone ARM64 Tar
288288
if: inputs.custom-build == false
289-
uses: actions/download-artifact@v4
289+
uses: actions/download-artifact@v5
290290
with:
291291
name: dgraph-standalone-arm64
292292

.github/workflows/ci-dgraph-core-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: warp-ubuntu-latest-x64-4x
2929
timeout-minutes: 60
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
- name: Set up Go
3333
uses: actions/setup-go@v5
3434
with:

.github/workflows/ci-dgraph-core-upgrade-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: warp-ubuntu-latest-x64-4x
2727
timeout-minutes: 60
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232
- name: Set up Go

.github/workflows/ci-dgraph-fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: warp-ubuntu-latest-x64-4x
2727
timeout-minutes: 10
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- name: Set up Go
3131
uses: actions/setup-go@v5
3232
with:

.github/workflows/ci-dgraph-integration2-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: warp-ubuntu-latest-x64-4x
2727
timeout-minutes: 30
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232
- name: Set up Go

.github/workflows/ci-dgraph-jepsen-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
timeout-minutes: 60
1717
steps:
1818
- name: Checkout dgraph repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Checkout jepsen repo
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
repository: hypermodeinc/jepsen
2424
path: jepsen

.github/workflows/ci-dgraph-ldbc-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
timeout-minutes: 10
2828
steps:
2929
- name: Checkout Dgraph
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
- name: Set up Go
3232
uses: actions/setup-go@v5
3333
with:

.github/workflows/ci-dgraph-load-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: warp-ubuntu-latest-x64-4x
2727
timeout-minutes: 30
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- name: Set up Go
3131
uses: actions/setup-go@v5
3232
with:

.github/workflows/ci-dgraph-system-upgrade-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: warp-ubuntu-latest-x64-4x
2727
timeout-minutes: 90
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232
- name: Set up Go

.github/workflows/ci-dgraph-systest-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: warp-ubuntu-latest-x64-16x
2929
timeout-minutes: 60
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
- name: Set up Go
3333
uses: actions/setup-go@v5
3434
with:

0 commit comments

Comments
 (0)