Skip to content

Commit

Permalink
Merge pull request #57 from krzko/feat-update-deps
Browse files Browse the repository at this point in the history
feat: bump to latest dependencies
  • Loading branch information
krzko authored Sep 7, 2023
2 parents 887f322 + 9d15bef commit 006c570
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3.6.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3.6.0
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/grafana/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# dependabot will update this file when base image is updated
FROM grafana/grafana:10.0.2
FROM grafana/grafana:10.1.1
2 changes: 1 addition & 1 deletion dockerfiles/loki/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# dependabot will update this file when base image is updated
FROM grafana/loki:2.8.2
FROM grafana/loki:2.8.4
2 changes: 1 addition & 1 deletion dockerfiles/otel-collector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# dependabot will update this file when base image is updated
FROM otel/opentelemetry-collector-contrib:0.81.0
FROM otel/opentelemetry-collector-contrib:0.84.0
2 changes: 1 addition & 1 deletion dockerfiles/prometheus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# dependabot will update this file when base image is updated
FROM prom/prometheus:v2.45.0
FROM prom/prometheus:v2.46.0
8 changes: 4 additions & 4 deletions internal/files/files/grafana/run-o11y-run/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.8"
services:

grafana:
image: grafana/grafana:10.0.2
image: grafana/grafana:10.1.1
volumes:
- ../shared/grafana-datasources.yaml:/etc/grafana/provisioning/datasources/datasources.yaml
# - ../shared/pyroscope/grafana-provisioning:/etc/grafana/provisioning
Expand All @@ -20,7 +20,7 @@ services:
- "3000:3000"

loki:
image: grafana/loki:2.8.2
image: grafana/loki:2.8.4
command: "-config.file=/etc/loki/local-config.yaml"
environment:
- NO_PROXY=grafana,loki,minio,otel-collector,prometheus,pyroscope,tempo
Expand Down Expand Up @@ -64,7 +64,7 @@ services:
retries: 5

otel-collector:
image: otel/opentelemetry-collector-contrib:0.81.0
image: otel/opentelemetry-collector-contrib:0.84.0
command: [ "--config=/etc/otel-collector.yaml" ]
volumes:
- ../shared/otel-collector.yaml:/etc/otel-collector.yaml
Expand All @@ -82,7 +82,7 @@ services:
- tempo

prometheus:
image: prom/prometheus:v2.45.0
image: prom/prometheus:v2.46.0
command:
- --config.file=/etc/prometheus.yaml
- --web.enable-remote-write-receiver
Expand Down

0 comments on commit 006c570

Please sign in to comment.