Skip to content

Commit c45c8af

Browse files
dev: bump the all group across 1 directory with 7 updates
Bumps the all group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `8` | `9` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/labeler](https://github.com/actions/labeler) | `5` | `6` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) Updates `aws-actions/configure-aws-credentials` from 4 to 5 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](aws-actions/configure-aws-credentials@v4...v5) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/labeler` from 5 to 6 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](actions/labeler@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: aws-actions/configure-aws-credentials dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4e943b5 commit c45c8af

14 files changed

+30
-30
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@v5
23+
uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626
submodules: true

.github/workflows/console-e2e.yml

Lines changed: 12 additions & 12 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@v5
39+
uses: actions/checkout@v6
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@v5
66+
uses: actions/checkout@v6
6767
with:
6868
fetch-depth: 0
6969
submodules: true
@@ -107,7 +107,7 @@ jobs:
107107
- name: Zip build artifacts
108108
run: zip -r build.zip .env/cache/database.pgdump .env/admin_api_key.txt data/lorawan-devices-index public ttn-lw-stack tools/bin/mage
109109
- name: Upload build artifacts
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v5
111111
with:
112112
name: build-files
113113
path: build.zip
@@ -125,7 +125,7 @@ jobs:
125125
timeout-minutes: 15
126126
steps:
127127
- name: Check out code
128-
uses: actions/checkout@v5
128+
uses: actions/checkout@v6
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@v5
143+
- uses: actions/download-artifact@v6
144144
name: Download build artifacts
145145
with:
146146
name: "build-files"
@@ -195,19 +195,19 @@ jobs:
195195
!cypress/e2e/smoke/smoke.spec.js
196196
${{ steps.get-failed-spec.outputs.neg-failed-test }}
197197
- name: Upload logs
198-
uses: actions/upload-artifact@v4
198+
uses: actions/upload-artifact@v5
199199
if: failure()
200200
with:
201201
name: logs
202202
path: .cache/devStack.log
203203
- name: Upload screenshots for failed tests
204-
uses: actions/upload-artifact@v4
204+
uses: actions/upload-artifact@v5
205205
if: failure()
206206
with:
207207
name: cypress-screenshots
208208
path: cypress/screenshots
209209
- name: Upload name of failing test
210-
uses: actions/upload-artifact@v4
210+
uses: actions/upload-artifact@v5
211211
if: failure()
212212
with:
213213
name: cypress-failed-test-spec
@@ -222,7 +222,7 @@ jobs:
222222
timeout-minutes: 15
223223
steps:
224224
- name: Check out code
225-
uses: actions/checkout@v5
225+
uses: actions/checkout@v6
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@v5
235+
- uses: actions/download-artifact@v6
236236
name: Download build artifacts
237237
with:
238238
name: "build-files"
@@ -261,13 +261,13 @@ jobs:
261261
record: true
262262
spec: cypress/e2e/smoke/smoke.spec.js
263263
- name: Upload logs
264-
uses: actions/upload-artifact@v4
264+
uses: actions/upload-artifact@v5
265265
if: failure()
266266
with:
267267
name: logs
268268
path: .cache/devStack.log
269269
- name: Upload screenshots for failed tests
270-
uses: actions/upload-artifact@v4
270+
uses: actions/upload-artifact@v5
271271
if: failure()
272272
with:
273273
name: cypress-screenshots

.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@v5
26+
uses: actions/checkout@v6
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@v5
12+
uses: actions/checkout@v6
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: 4 additions & 4 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@v5
25+
uses: actions/checkout@v6
2626
- name: Install Go and Dependencies
2727
uses: ./.github/actions/install-go-and-deps
2828
- name: Build Mage
@@ -40,7 +40,7 @@ jobs:
4040
- name: Check for diff
4141
run: tools/bin/mage git:diff
4242
- name: Lint code
43-
uses: golangci/golangci-lint-action@v8
43+
uses: golangci/golangci-lint-action@v9
4444
with:
4545
version: v2.1
4646
only-new-issues: true
@@ -83,15 +83,15 @@ jobs:
8383
args: -h postgres -U root ttn_lorawan_is_store_test
8484
- name: Configure AWS Credentials
8585
if: "${{ env.AWS_REGION != '' }}"
86-
uses: aws-actions/configure-aws-credentials@v4
86+
uses: aws-actions/configure-aws-credentials@v5
8787
with:
8888
aws-region: '${{ secrets.AWS_REGION }}'
8989
role-to-assume: 'arn:aws:iam::${{ secrets.AWS_USER_ID }}:role/${{ secrets.AWS_ROLE_NAME }}'
9090
role-session-name: '${{ secrets.AWS_ROLE_NAME }}-${{ github.job }}-${{ github.run_id }}'
9191
env:
9292
AWS_REGION: '${{ secrets.AWS_REGION }}'
9393
- name: Check out code
94-
uses: actions/checkout@v5
94+
uses: actions/checkout@v6
9595
- name: Install Go and Dependencies
9696
uses: ./.github/actions/install-go-and-deps
9797
- name: Build Mage

.github/workflows/issue-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 5
1111
steps:
1212
- name: Add "needs/triage" label
13-
uses: actions/github-script@v7
13+
uses: actions/github-script@v8
1414
with:
1515
github-token: ${{ secrets.GITHUB_TOKEN }}
1616
script: |

.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@v5
25+
uses: actions/checkout@v6
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@v5
53+
uses: actions/checkout@v6
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 [email protected]
3232
- name: Checkout
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
with:
3535
token: ${{ secrets.BOT_TOKEN }}
3636
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/pr-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-24.04
77
timeout-minutes: 5
88
steps:
9-
- uses: actions/labeler@v5
9+
- uses: actions/labeler@v6
1010
if: ${{ github.event.pull_request.head.repo.full_name == github.repository && !startsWith(github.actor, 'dependabot') }}
1111
with:
1212
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.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@v5
17+
uses: actions/checkout@v6
1818
- name: Install Go and Dependencies
1919
uses: ./.github/actions/install-go-and-deps
2020
- name: Build Mage

0 commit comments

Comments
 (0)