File tree Expand file tree Collapse file tree 9 files changed +20
-20
lines changed
Expand file tree Collapse file tree 9 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1515
1616 steps :
1717 - name : Checkout code
18- uses : actions/checkout@v5
18+ uses : actions/checkout@v6
1919 with :
2020 ref : ${{ github.head_ref || github.ref }}
2121 token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1818
1919 steps :
2020 - name : Checkout code
21- uses : actions/checkout@v5
21+ uses : actions/checkout@v6
2222 with :
2323 fetch-depth : 0
2424 ref : ${{ github.ref }}
4848
4949 steps :
5050 - name : Checkout code
51- uses : actions/checkout@v5
51+ uses : actions/checkout@v6
5252 with :
5353 fetch-depth : 0
5454 ref : ${{ github.ref }}
6464
6565 steps :
6666 - name : Checkout code
67- uses : actions/checkout@v5
67+ uses : actions/checkout@v6
6868 with :
6969 fetch-depth : 0
7070 ref : ${{ github.ref }}
9595
9696 steps :
9797 - name : Checkout code
98- uses : actions/checkout@v5
98+ uses : actions/checkout@v6
9999 with :
100100 fetch-depth : 0
101101 ref : ${{ github.ref }}
@@ -118,7 +118,7 @@ jobs:
118118 should-build : ${{ steps.check.outputs.should-build }}
119119 steps :
120120 - name : Checkout code
121- uses : actions/checkout@v5
121+ uses : actions/checkout@v6
122122 with :
123123 fetch-depth : 0
124124 ref : ${{ github.ref }}
@@ -211,7 +211,7 @@ jobs:
211211
212212 steps :
213213 - name : Checkout code
214- uses : actions/checkout@v5
214+ uses : actions/checkout@v6
215215 with :
216216 fetch-depth : 0
217217 ref : ${{ github.ref }}
Original file line number Diff line number Diff line change 1919 runs-on : ubuntu-latest
2020
2121 steps :
22- - uses : actions/checkout@v5
22+ - uses : actions/checkout@v6
2323 with :
2424 fetch-depth : 0
2525 token : ${{ secrets.RELEASE_TOKEN }}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Get ghcr-exporter running in minutes!
66
77### 1. Pull the image
88``` bash
9- docker pull ghcr.io/d0ugal/ghcr-exporter:v2.11.2
9+ docker pull ghcr.io/d0ugal/ghcr-exporter:v2.11.3
1010```
1111
1212### 2. Create a configuration file
@@ -24,7 +24,7 @@ docker run -d \
2424 --name ghcr-exporter \
2525 -p 8080:8080 \
2626 -v $( pwd) /config.yaml:/app/config.yaml:ro \
27- ghcr.io/d0ugal/ghcr-exporter:v2.11.2
27+ ghcr.io/d0ugal/ghcr-exporter:v2.11.3
2828```
2929
3030### 4. Verify it's working
@@ -60,7 +60,7 @@ make build
6060version : ' 3.8'
6161services :
6262 ghcr-exporter :
63- image : ghcr.io/d0ugal/ghcr-exporter:v2.11.2
63+ image : ghcr.io/d0ugal/ghcr-exporter:v2.11.3
6464 ports :
6565 - " 8080:8080"
6666 volumes :
Original file line number Diff line number Diff line change 22
33A Prometheus exporter for GitHub Container Registry (GHCR) metrics.
44
5- ** Image** : ` ghcr.io/d0ugal/ghcr-exporter:v2.11.2 `
5+ ** Image** : ` ghcr.io/d0ugal/ghcr-exporter:v2.11.3 `
66
77## Metrics
88
@@ -30,7 +30,7 @@ A Prometheus exporter for GitHub Container Registry (GHCR) metrics.
3030version : ' 3.8'
3131services :
3232 ghcr-exporter :
33- image : ghcr.io/d0ugal/ghcr-exporter:v2.11.2
33+ image : ghcr.io/d0ugal/ghcr-exporter:v2.11.3
3434 ports :
3535 - " 8080:8080"
3636 volumes :
@@ -85,7 +85,7 @@ packages:
8585version: '3.8'
8686services:
8787 ghcr-exporter:
88- image: ghcr.io/d0ugal/ghcr-exporter:v2.11.2
88+ image: ghcr.io/d0ugal/ghcr-exporter:v2.11.3
8989 ports:
9090 - "8080:8080"
9191 environment:
@@ -113,7 +113,7 @@ spec:
113113 spec:
114114 containers:
115115 - name: ghcr-exporter
116- image: ghcr.io/d0ugal/ghcr-exporter:v2.11.2
116+ image: ghcr.io/d0ugal/ghcr-exporter:v2.11.3
117117 ports:
118118 - containerPort: 8080
119119 env:
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: '3.8'
22
33services :
44 ghcr-exporter :
5- image : ghcr.io/d0ugal/ghcr-exporter:v2.11.2
5+ image : ghcr.io/d0ugal/ghcr-exporter:v2.11.3
66 container_name : ghcr-exporter
77 ports :
88 - " 8080:8080"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: '3.8'
22
33services :
44 ghcr-exporter :
5- image : ghcr.io/d0ugal/ghcr-exporter:v2.11.2
5+ image : ghcr.io/d0ugal/ghcr-exporter:v2.11.3
66 container_name : ghcr-exporter
77 ports :
88 - " 8080:8080"
Original file line number Diff line number Diff line change 55toolchain go1.25.4
66
77require (
8- github.com/d0ugal/promexporter v1.13.3
8+ github.com/d0ugal/promexporter v1.13.4
99 github.com/prometheus/client_golang v1.23.2
1010 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0
1111 go.opentelemetry.io/otel v1.38.0
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UF
1212github.com/cespare/xxhash/v2 v2.3.0 /go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs =
1313github.com/cloudwego/base64x v0.1.6 h1:t11wG9AECkCDk5fMSoxmufanudBtJ+/HemLstXDLI2M =
1414github.com/cloudwego/base64x v0.1.6 /go.mod h1:OFcloc187FXDaYHvrNIjxSe8ncn0OOM8gEHfghB2IPU =
15- github.com/d0ugal/promexporter v1.13.3 h1:8XiKfYswuKM8Zk0CrCdWvPgXLI7PAxi9kRh2vp8AlGU =
16- github.com/d0ugal/promexporter v1.13.3 /go.mod h1:7VpjmfZ7IGrspnXlHgbj60LCMFdu0aenSusmSEPNxwM =
15+ github.com/d0ugal/promexporter v1.13.4 h1:iBZUK4CvjeIQlN8b5UN/D9sc8NTCTY9sq3F2T4UDgLU =
16+ github.com/d0ugal/promexporter v1.13.4 /go.mod h1:7VpjmfZ7IGrspnXlHgbj60LCMFdu0aenSusmSEPNxwM =
1717github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
1818github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
1919github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
You can’t perform that action at this time.
0 commit comments