Skip to content

Commit 9177290

Browse files
authored
Merge branch 'main' into fix/ci-dev-build-pr-exclusion
2 parents f9f5855 + c72297a commit 9177290

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

.github/workflows/auto-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
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 }}

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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 }}
@@ -48,7 +48,7 @@ jobs:
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 }}
@@ -64,7 +64,7 @@ jobs:
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 }}
@@ -95,7 +95,7 @@ jobs:
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 }}

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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 }}

QUICKSTART.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
6060
version: '3.8'
6161
services:
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:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A 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.
3030
version: '3.8'
3131
services:
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:
8585
version: '3.8'
8686
services:
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:

docker-compose.env.example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.8'
22

33
services:
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"

docker-compose.example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.8'
22

33
services:
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"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25
55
toolchain go1.25.4
66

77
require (
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

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UF
1212
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
1313
github.com/cloudwego/base64x v0.1.6 h1:t11wG9AECkCDk5fMSoxmufanudBtJ+/HemLstXDLI2M=
1414
github.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=
1717
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1818
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
1919
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

0 commit comments

Comments
 (0)