Skip to content

Commit 2bb4318

Browse files
authored
Merge pull request #7691 from TheThingsNetwork/dependabot/github_actions/all-7921bc0373
dev: bump the all group with 2 updates
2 parents 6c38617 + 7d719c9 commit 2bb4318

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

.github/workflows/changelog-cutoff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Check branch
2121
run: echo "${{ github.ref_name }}" | grep -Pq '^v3\.\d+$'
2222
- name: Check out code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626
submodules: true

.github/workflows/console-e2e.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
timeout-minutes: 5
3737
steps:
3838
- name: Check out code
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040
with:
4141
fetch-depth: 0
4242
submodules: false
@@ -63,7 +63,7 @@ jobs:
6363
timeout-minutes: 30
6464
steps:
6565
- name: Check out code
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6767
with:
6868
fetch-depth: 0
6969
submodules: true
@@ -125,7 +125,7 @@ jobs:
125125
timeout-minutes: 15
126126
steps:
127127
- name: Check out code
128-
uses: actions/checkout@v4
128+
uses: actions/checkout@v5
129129
with:
130130
fetch-depth: 0
131131
submodules: true
@@ -140,7 +140,7 @@ jobs:
140140
sudo apt-get update
141141
sudo apt-get --only-upgrade install google-chrome-stable
142142
google-chrome --version
143-
- uses: actions/download-artifact@v4
143+
- uses: actions/download-artifact@v5
144144
name: Download build artifacts
145145
with:
146146
name: "build-files"
@@ -222,7 +222,7 @@ jobs:
222222
timeout-minutes: 15
223223
steps:
224224
- name: Check out code
225-
uses: actions/checkout@v4
225+
uses: actions/checkout@v5
226226
with:
227227
fetch-depth: 0
228228
submodules: true
@@ -232,7 +232,7 @@ jobs:
232232
uses: ./.github/actions/build-mage
233233
- name: Install Node and Dependencies
234234
uses: ./.github/actions/install-node-and-deps
235-
- uses: actions/download-artifact@v4
235+
- uses: actions/download-artifact@v5
236236
name: Download build artifacts
237237
with:
238238
name: "build-files"

.github/workflows/create-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Check branch
2424
run: echo "${{ github.ref_name }}" | grep -Pq '^v3\.\d+$'
2525
- name: Check out code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929
submodules: true

.github/workflows/general.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
timeout-minutes: 5
1010
steps:
1111
- name: Check out code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Fetch base ref
1414
run: git fetch origin ${{ github.base_ref }}
1515
- name: Install Go and Dependencies

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
timeout-minutes: 15
2323
steps:
2424
- name: Check out code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
- name: Install Go and Dependencies
2727
uses: ./.github/actions/install-go-and-deps
2828
- name: Build Mage
@@ -91,7 +91,7 @@ jobs:
9191
env:
9292
AWS_REGION: '${{ secrets.AWS_REGION }}'
9393
- name: Check out code
94-
uses: actions/checkout@v4
94+
uses: actions/checkout@v5
9595
- name: Install Go and Dependencies
9696
uses: ./.github/actions/install-go-and-deps
9797
- name: Build Mage

.github/workflows/js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
timeout-minutes: 15
2323
steps:
2424
- name: Check out code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
- name: Install Go and Dependencies
2727
uses: ./.github/actions/install-go-and-deps
2828
- name: Build Mage
@@ -50,7 +50,7 @@ jobs:
5050
timeout-minutes: 15
5151
steps:
5252
- name: Check out code
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v5
5454
- name: Install Go and Dependencies
5555
uses: ./.github/actions/install-go-and-deps
5656
- name: Build Mage

.github/workflows/mergeability.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
git config --global user.name github-actions
3131
git config --global user.email github-actions@github.com
3232
- name: Checkout
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
with:
3535
token: ${{ secrets.BOT_TOKEN }}
3636
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/proto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 5
1515
steps:
1616
- name: Check out code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Install Go and Dependencies
1919
uses: ./.github/actions/install-go-and-deps
2020
- name: Build Mage

.github/workflows/release-rc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Check branch
2020
run: echo "${{ github.ref_name }}" | grep -Pq '^release/v3\.\d+\.\d+$'
2121
- name: Check out code
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525
submodules: true

.github/workflows/release-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 30
1717
steps:
1818
- name: Check out code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222
submodules: true

0 commit comments

Comments
 (0)