Skip to content

Commit 2ea769c

Browse files
increase expiry time (#101)
1 parent ae982c7 commit 2ea769c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.trunk/trunk.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
33
version: 0.1
44
cli:
5-
version: 1.22.10
5+
version: 1.22.11
66
# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
77
plugins:
88
sources:
@@ -18,19 +18,19 @@ runtimes:
1818
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
1919
lint:
2020
enabled:
21-
- trivy@0.60.0
21+
- trivy@0.61.0
2222
23-
24-
- eslint@9.22.0
23+
24+
- eslint@9.23.0
2525
- git-diff-check
2626
2727
2828
29-
- renovate@39.207.2
29+
- renovate@39.219.3
3030
3131
32-
33-
- yamllint@1.36.2
32+
33+
- yamllint@1.37.0
3434
actions:
3535
enabled:
3636
- trunk-announce

src/commands/login/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export default class LoginIndex extends Command {
103103
body: JSON.stringify({
104104
userId,
105105
name: "CLI Access Key",
106-
expiresIn: 60 * 60 * 24 * 7, // 7 days
106+
expiresIn: 60 * 60 * 24 * 365, // 365 days
107107
prefix: "cli",
108108
}),
109109
});

0 commit comments

Comments
 (0)