Skip to content

Commit 4d723b3

Browse files
Pin dependencies (#1447)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://redirect.github.com/actions/cache) | action | pinDigest | -> `5a3ec84` | | [actions/checkout](https://redirect.github.com/actions/checkout) | action | pinDigest | -> `11bd719` | | [actions/configure-pages](https://redirect.github.com/actions/configure-pages) | action | pinDigest | -> `983d773` | | [actions/deploy-pages](https://redirect.github.com/actions/deploy-pages) | action | pinDigest | -> `d6db901` | | [actions/setup-java](https://redirect.github.com/actions/setup-java) | action | pinDigest | -> `c5195ef` | | [actions/upload-pages-artifact](https://redirect.github.com/actions/upload-pages-artifact) | action | pinDigest | -> `56afc60` | | eclipse-temurin | final | pinDigest | -> `ffed502` | | eclipse-temurin | | pinDigest | -> `ffed502` | | [grafana/grafana](https://redirect.github.com/grafana/grafana) | | pinDigest | -> `b5b59bf` | | grafana/k6 | | pinDigest | -> `b1625f6` | | grafana/tempo | | pinDigest | -> `bc9245f` | | openjdk | | pinDigest | -> `356949c` | | [otel/opentelemetry-collector-contrib](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases) | | pinDigest | -> `4798e30` | | prom/prometheus | | pinDigest | -> `3b1d5be` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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/prometheus/client_java). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNy4yIiwidXBkYXRlZEluVmVyIjoiNDEuMTcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 78f8762 commit 4d723b3

File tree

11 files changed

+26
-26
lines changed

11 files changed

+26
-26
lines changed

.github/workflows/acceptance-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Check out
1313
with:
1414
persist-credentials: false
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616
- uses: jdx/mise-action@5cb1df66ed5e1fb3c670ea0b62fd17a76979826a # v2.3.1
1717
- name: Run acceptance tests
1818
run: mise run acceptance-test

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
build:
1010
runs-on: ubuntu-24.04
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1313
with:
1414
persist-credentials: false
1515
- uses: jdx/mise-action@5cb1df66ed5e1fb3c670ea0b62fd17a76979826a # v2.3.1
1616
- name: Cache local Maven repository
17-
uses: actions/cache@v4
17+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
1818
with:
1919
path: ~/.m2/repository
2020
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/github-pages.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
if: github.repository == 'prometheus/client_java'
3333
runs-on: ubuntu-24.04
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3636
with:
3737
persist-credentials: false
3838
fetch-tags: "true"
@@ -42,13 +42,13 @@ jobs:
4242
cache: "false"
4343
- name: Setup Pages
4444
id: pages
45-
uses: actions/configure-pages@v5
45+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
4646
- name: Build GitHub Pages
4747
run: mise run build-gh-pages
4848
env:
4949
BASE_URL: "${{ steps.pages.outputs.base_url }}/"
5050
- name: Upload artifact
51-
uses: actions/upload-pages-artifact@v3
51+
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
5252
with:
5353
path: ./docs/public
5454
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
@@ -68,4 +68,4 @@ jobs:
6868
steps:
6969
- name: Deploy to GitHub Pages
7070
id: deployment
71-
uses: actions/deploy-pages@v4
71+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4

.github/workflows/native-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Check out
1313
with:
1414
persist-credentials: false
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616
- uses: jdx/mise-action@5cb1df66ed5e1fb3c670ea0b62fd17a76979826a # v2.3.1
1717
env:
1818
MISE_ENV: native

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
echo "${#GPG_SIGNING_KEY}"
2121
echo "${GPG_SIGNING_KEY}" | gpg --batch --import-options import-show --import
2222
- name: Checkout Plugin Repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2424
with:
2525
persist-credentials: false
2626

2727
- name: Set Up JDK
28-
uses: actions/setup-java@v4
28+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
2929
with:
3030
java-version: 17
3131
distribution: temurin
@@ -36,7 +36,7 @@ jobs:
3636
TAG: ${{ github.ref_name }}
3737

3838
- name: Set up Apache Maven Central
39-
uses: actions/setup-java@v4
39+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
4040
with:
4141
distribution: "temurin"
4242
java-version: "17"

.github/workflows/test-release-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
build:
1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717
with:
1818
persist-credentials: false
1919
- uses: jdx/mise-action@5cb1df66ed5e1fb3c670ea0b62fd17a76979826a # v2.3.1
2020
- name: Cache local Maven repository
21-
uses: actions/cache@v4
21+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
2222
with:
2323
path: ~/.m2/repository
2424
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

examples/example-exemplars-tail-sampling/docker-compose.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ services:
3636
- -jar
3737
- /example-greeting-service.jar
3838
collector:
39-
image: otel/opentelemetry-collector-contrib:0.129.1
39+
image: otel/opentelemetry-collector-contrib:0.129.1@sha256:4798e3095561ac8ae13a81965088d68b943b1991bbeede91b1564e12c95372cc
4040
network_mode: host
4141
volumes:
4242
- ./config/otelcol-config.yaml:/config.yaml
4343
command:
4444
- --config=file:/config.yaml
4545
prometheus:
46-
image: prom/prometheus:v3.4.2
46+
image: prom/prometheus:v3.4.2@sha256:3b1d5be5c3eef4f027665ddaa3b1a7de8a58d96a0a6de5dd45629afd267ecaf0
4747
network_mode: host
4848
volumes:
4949
- ./config/prometheus.yaml:/prometheus.yaml
@@ -52,14 +52,14 @@ services:
5252
- --enable-feature=native-histograms
5353
- --config.file=/prometheus.yaml
5454
tempo:
55-
image: grafana/tempo:2.8.1
55+
image: grafana/tempo:2.8.1@sha256:bc9245fe3da4e63dc4c6862d9c2dad9bcd8be13d0ba4f7705fa6acda4c904d0e
5656
network_mode: host
5757
volumes:
5858
- ./config/tempo-config.yaml:/config.yaml
5959
command:
6060
- --config.file=/config.yaml
6161
grafana:
62-
image: grafana/grafana:12.0.2
62+
image: grafana/grafana:12.0.2@sha256:b5b59bfc7561634c2d7b136c4543d702ebcc94a3da477f21ff26f89ffd4214fa
6363
network_mode: host
6464
ports:
6565
- "3000:3000"
@@ -68,7 +68,7 @@ services:
6868
- ./config/grafana-dashboards.yaml:/etc/grafana/provisioning/dashboards/grafana-dashboards.yaml
6969
- ./config/grafana-example-dashboard.json:/etc/grafana/example-dashboard.json
7070
k6:
71-
image: grafana/k6
71+
image: grafana/k6@sha256:b1625f686ef1c733340b00de57bce840e0b4b1f7e545c58305a5db53e7ad3797
7272
network_mode: host
7373
volumes:
7474
- ./config/k6-script.js:/k6-script.js

examples/example-exporter-opentelemetry/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3"
22
services:
33
prometheus-opentelemetry-example-app:
4-
image: openjdk:11.0.16-jre
4+
image: openjdk:11.0.16-jre@sha256:356949c3125c4fa8104745e7ea92bd995da4567634e6599b470d2f972d13e0e2
55
network_mode: host
66
ports:
77
- "5005:5005"
@@ -13,14 +13,14 @@ services:
1313
#- -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005
1414
- /example-exporter-opentelemetry.jar
1515
collector:
16-
image: otel/opentelemetry-collector-contrib:0.129.1
16+
image: otel/opentelemetry-collector-contrib:0.129.1@sha256:4798e3095561ac8ae13a81965088d68b943b1991bbeede91b1564e12c95372cc
1717
network_mode: host
1818
volumes:
1919
- ./config/otelcol-config.yaml:/config.yaml
2020
command:
2121
- --config=file:/config.yaml
2222
prometheus:
23-
image: prom/prometheus:v3.4.2
23+
image: prom/prometheus:v3.4.2@sha256:3b1d5be5c3eef4f027665ddaa3b1a7de8a58d96a0a6de5dd45629afd267ecaf0
2424
network_mode: host
2525
volumes:
2626
- ./config/prometheus.yaml:/prometheus.yaml

examples/example-exporter-opentelemetry/oats-tests/agent/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:21.0.7_6-jre
1+
FROM eclipse-temurin:21.0.7_6-jre@sha256:ffed502a66e8be6e27b6317fcd5913e967dd79e1e2f5135b2c1ffce557930ec3
22

33
COPY target/example-exporter-opentelemetry.jar ./app.jar
44
# check that the resource attributes from the agent are used, epsecially the service.instance.id should be the same

examples/example-exporter-opentelemetry/oats-tests/http/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:21.0.7_6-jre
1+
FROM eclipse-temurin:21.0.7_6-jre@sha256:ffed502a66e8be6e27b6317fcd5913e967dd79e1e2f5135b2c1ffce557930ec3
22

33
COPY target/example-exporter-opentelemetry.jar ./app.jar
44

0 commit comments

Comments
 (0)