Skip to content

Commit e13011d

Browse files
chore(deps): Update dependencies versions to remove CVE (#13833)
Signed-off-by: Vladyslav Diachenko <[email protected]>
1 parent 43e0032 commit e13011d

File tree

225 files changed

+29378
-6314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+29378
-6314
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"image": "grafana/loki-build-image:0.33.1",
2+
"image": "grafana/loki-build-image:0.33.5",
33
"containerEnv": {
44
"BUILD_IN_CONTAINER": "false"
55
},

.drone/drone.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ steps:
146146
depends_on:
147147
- clone
148148
environment: {}
149-
image: grafana/loki-build-image:0.33.3
149+
image: grafana/loki-build-image:0.33.5
150150
name: loki-mixin-check
151151
when:
152152
event:
@@ -171,7 +171,7 @@ steps:
171171
depends_on:
172172
- clone
173173
environment: {}
174-
image: grafana/loki-build-image:0.33.3
174+
image: grafana/loki-build-image:0.33.5
175175
name: documentation-helm-reference-check
176176
trigger:
177177
ref:
@@ -1117,7 +1117,7 @@ steps:
11171117
from_secret: docker_password
11181118
DOCKER_USERNAME:
11191119
from_secret: docker_username
1120-
image: grafana/loki-build-image:0.33.3
1120+
image: grafana/loki-build-image:0.33.5
11211121
name: build and push
11221122
privileged: true
11231123
volumes:
@@ -1340,6 +1340,6 @@ kind: secret
13401340
name: gpg_private_key
13411341
---
13421342
kind: signature
1343-
hmac: 361d32e18fac906a3f2cefddaefa6aa5e85a71664930c41976984e7747a7904f
1343+
hmac: 60d68b67ed7a4313ca98b8d3b8814010df9cf98fcc64b3189c4eb5f8d6416ecb
13441344

13451345
...

.github/jsonnetfile.lock.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"subdir": "workflows"
99
}
1010
},
11-
"version": "634945b73e8eed4f5161ec08810178ddeca7505b",
12-
"sum": "BOnwSjzyOjWwv9ikwJSAgPBNnYHTU2PEDJ0PWY6nr7I="
11+
"version": "87cb5090c36b5332e7f21b5c59e136962d5f4f56",
12+
"sum": "kVlVZPpPz8d/D6UGK9Hto+NeGy7z8NvGygcB1QboxWw="
1313
}
1414
],
1515
"legacyImports": false

.github/vendor/github.com/grafana/loki-release/workflows/build.libsonnet

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/vendor/github.com/grafana/loki-release/workflows/common.libsonnet

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/vendor/github.com/grafana/loki-release/workflows/release.libsonnet

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/vendor/github.com/grafana/loki-release/workflows/validate.libsonnet

+158-45
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"check":
33
"uses": "grafana/loki-release/.github/workflows/check.yml@main"
44
"with":
5-
"build_image": "grafana/loki-build-image:0.33.3"
5+
"build_image": "grafana/loki-build-image:0.33.5"
66
"golang_ci_lint_version": "v1.55.1"
77
"release_lib_ref": "main"
88
"skip_validation": false

.github/workflows/minor-release-pr.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
check:
1717
uses: "grafana/loki-release/.github/workflows/check.yml@main"
1818
with:
19-
build_image: "grafana/loki-build-image:0.33.3"
19+
build_image: "grafana/loki-build-image:0.33.5"
2020
golang_ci_lint_version: "v1.55.1"
2121
release_lib_ref: "main"
2222
skip_validation: false
@@ -58,7 +58,7 @@ jobs:
5858
- id: "get_github_app_token"
5959
if: "${{ fromJSON(env.USE_GITHUB_APP_TOKEN) }}"
6060
name: "get github app token"
61-
uses: "actions/github-app-token@v1"
61+
uses: "actions/create-github-app-token@v1"
6262
with:
6363
app-id: "${{ secrets.APP_ID }}"
6464
owner: "${{ github.repository_owner }}"
@@ -101,6 +101,8 @@ jobs:
101101
version: "${{ needs.version.outputs.version }}"
102102
runs-on: "ubuntu-latest"
103103
steps:
104+
- name: "clean up build tools cache"
105+
run: "rm -rf /opt/hostedtoolcache"
104106
- name: "pull code to release"
105107
uses: "actions/checkout@v4"
106108
with:
@@ -141,7 +143,7 @@ jobs:
141143
--env SKIP_ARM \
142144
--volume .:/src/loki \
143145
--workdir /src/loki \
144-
--entrypoint /bin/sh "grafana/loki-build-image:0.33.3"
146+
--entrypoint /bin/sh "grafana/loki-build-image:0.33.5"
145147
git config --global --add safe.directory /src/loki
146148
echo "${NFPM_SIGNING_KEY}" > $NFPM_SIGNING_KEY_FILE
147149
make dist packages
@@ -753,7 +755,7 @@ jobs:
753755
- id: "get_github_app_token"
754756
if: "${{ fromJSON(env.USE_GITHUB_APP_TOKEN) }}"
755757
name: "get github app token"
756-
uses: "actions/github-app-token@v1"
758+
uses: "actions/create-github-app-token@v1"
757759
with:
758760
app-id: "${{ secrets.APP_ID }}"
759761
owner: "${{ github.repository_owner }}"

0 commit comments

Comments
 (0)