Skip to content

Commit 2055b77

Browse files
Merge branch 'main' of github.com:fosrl/newt into dev
2 parents 1c9c98e + 9c57677 commit 2055b77

File tree

8 files changed

+134
-100
lines changed

8 files changed

+134
-100
lines changed

.github/workflows/cicd.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
contents: write
4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
51+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5252
with:
5353
fetch-depth: 0
5454

@@ -92,7 +92,7 @@ jobs:
9292

9393
steps:
9494
- name: Checkout code
95-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
95+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
9696
with:
9797
fetch-depth: 0
9898

@@ -104,7 +104,7 @@ jobs:
104104
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
105105

106106
- name: Set up Docker Buildx
107-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
107+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
108108

109109
- name: Log in to Docker Hub
110110
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
@@ -234,7 +234,7 @@ jobs:
234234

235235
- name: Cache Go modules
236236
if: ${{ hashFiles('**/go.sum') != '' }}
237-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
237+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
238238
with:
239239
path: |
240240
~/.cache/go-build
@@ -269,7 +269,7 @@ jobs:
269269
} >> "$GITHUB_ENV"
270270
- name: Docker meta
271271
id: meta
272-
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # v5.9.0
272+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
273273
with:
274274
images: ${{ env.IMAGE_LIST }}
275275
tags: |
@@ -364,7 +364,7 @@ jobs:
364364

365365
- name: Attest build provenance (GHCR)
366366
id: attest-ghcr
367-
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
367+
uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # v3.1.0
368368
with:
369369
subject-name: ${{ env.GHCR_IMAGE }}
370370
subject-digest: ${{ steps.build.outputs.digest }}
@@ -374,7 +374,7 @@ jobs:
374374
- name: Attest build provenance (Docker Hub)
375375
continue-on-error: true
376376
id: attest-dh
377-
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
377+
uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # v3.1.0
378378
with:
379379
subject-name: index.docker.io/fosrl/${{ github.event.repository.name }}
380380
subject-digest: ${{ steps.build.outputs.digest }}

.github/workflows/nix-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Install Nix
1919
uses: DeterminateSystems/nix-installer-action@main

.github/workflows/nix-dependabot-update-hash.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
ref: ${{ github.head_ref }}
2222
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/stale-bot.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Mark and Close Stale Issues
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
workflow_dispatch: # Allow manual trigger
7+
8+
permissions:
9+
contents: write # only for delete-branch option
10+
issues: write
11+
pull-requests: write
12+
13+
jobs:
14+
stale:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
18+
with:
19+
days-before-stale: 14
20+
days-before-close: 14
21+
stale-issue-message: 'This issue has been automatically marked as stale due to 14 days of inactivity. It will be closed in 14 days if no further activity occurs.'
22+
close-issue-message: 'This issue has been automatically closed due to inactivity. If you believe this is still relevant, please open a new issue with up-to-date information.'
23+
stale-issue-label: 'stale'
24+
25+
exempt-issue-labels: 'needs investigating, networking, new feature, reverse proxy, bug, api, authentication, documentation, enhancement, help wanted, good first issue, question'
26+
27+
exempt-all-issue-assignees: true
28+
29+
only-labels: ''
30+
exempt-pr-labels: ''
31+
days-before-pr-stale: -1
32+
days-before-pr-close: -1
33+
34+
operations-per-run: 100
35+
remove-stale-when-updated: true
36+
delete-branch: false
37+
enable-statistics: true

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- go-build-release-windows-amd64
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
31+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3232

3333
- name: Set up Go
3434
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
inherit version;
3636
src = pkgs.nix-gitignore.gitignoreSource [ ] ./.;
3737

38-
vendorHash = "sha256-5Xr6mwPtsqEliKeKv2rhhp6JC7u3coP4nnhIxGMqccU=";
38+
vendorHash = "sha256-Sib6AUCpMgxlMpTc2Esvs+UU0yduVOxWUgT44FHAI+k=";
3939

4040
nativeInstallCheckInputs = [ pkgs.versionCheckHook ];
4141

go.mod

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@ require (
77
github.com/gorilla/websocket v1.5.3
88
github.com/prometheus/client_golang v1.23.2
99
github.com/vishvananda/netlink v1.3.1
10-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0
11-
go.opentelemetry.io/contrib/instrumentation/runtime v0.63.0
12-
go.opentelemetry.io/otel v1.38.0
13-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.38.0
14-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0
15-
go.opentelemetry.io/otel/exporters/prometheus v0.60.0
16-
go.opentelemetry.io/otel/metric v1.38.0
17-
go.opentelemetry.io/otel/sdk v1.38.0
18-
go.opentelemetry.io/otel/sdk/metric v1.38.0
19-
golang.org/x/crypto v0.45.0
10+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.64.0
11+
go.opentelemetry.io/contrib/instrumentation/runtime v0.64.0
12+
go.opentelemetry.io/otel v1.39.0
13+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.39.0
14+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0
15+
go.opentelemetry.io/otel/exporters/prometheus v0.61.0
16+
go.opentelemetry.io/otel/metric v1.39.0
17+
go.opentelemetry.io/otel/sdk v1.39.0
18+
go.opentelemetry.io/otel/sdk/metric v1.39.0
19+
golang.org/x/crypto v0.46.0
2020
golang.org/x/exp v0.0.0-20251113190631-e25ba8c21ef6
21-
golang.org/x/net v0.47.0
22-
golang.org/x/sys v0.38.0
21+
golang.org/x/net v0.48.0
22+
golang.org/x/sys v0.39.0
2323
golang.zx2c4.com/wireguard v0.0.0-20250521234502-f333402bd9cb
2424
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20241231184526-a9ab2273dd10
2525
golang.zx2c4.com/wireguard/windows v0.5.3
26-
google.golang.org/grpc v1.76.0
26+
google.golang.org/grpc v1.77.0
2727
gopkg.in/yaml.v3 v3.0.1
2828
gvisor.dev/gvisor v0.0.0-20250503011706-39ed1f5ac29c
29-
software.sslmate.com/src/go-pkcs12 v0.6.0
29+
software.sslmate.com/src/go-pkcs12 v0.7.0
3030
)
3131

3232
require (
@@ -44,8 +44,7 @@ require (
4444
github.com/go-logr/stdr v1.2.2 // indirect
4545
github.com/google/btree v1.1.3 // indirect
4646
github.com/google/uuid v1.6.0 // indirect
47-
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect
48-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
47+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect
4948
github.com/moby/docker-image-spec v1.3.1 // indirect
5049
github.com/moby/sys/atomicwriter v0.1.0 // indirect
5150
github.com/moby/term v0.5.2 // indirect
@@ -55,23 +54,23 @@ require (
5554
github.com/opencontainers/image-spec v1.1.0 // indirect
5655
github.com/pkg/errors v0.9.1 // indirect
5756
github.com/prometheus/client_model v0.6.2 // indirect
58-
github.com/prometheus/common v0.66.1 // indirect
59-
github.com/prometheus/otlptranslator v0.0.2 // indirect
60-
github.com/prometheus/procfs v0.17.0 // indirect
57+
github.com/prometheus/common v0.67.4 // indirect
58+
github.com/prometheus/otlptranslator v1.0.0 // indirect
59+
github.com/prometheus/procfs v0.19.2 // indirect
6160
github.com/vishvananda/netns v0.0.5 // indirect
62-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
63-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 // indirect
61+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
62+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 // indirect
6463
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0 // indirect
65-
go.opentelemetry.io/otel/trace v1.38.0 // indirect
66-
go.opentelemetry.io/proto/otlp v1.7.1 // indirect
67-
go.yaml.in/yaml/v2 v2.4.2 // indirect
64+
go.opentelemetry.io/otel/trace v1.39.0 // indirect
65+
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
66+
go.yaml.in/yaml/v2 v2.4.3 // indirect
6867
golang.org/x/mod v0.30.0 // indirect
69-
golang.org/x/sync v0.18.0 // indirect
70-
golang.org/x/text v0.31.0 // indirect
68+
golang.org/x/sync v0.19.0 // indirect
69+
golang.org/x/text v0.32.0 // indirect
7170
golang.org/x/time v0.12.0 // indirect
7271
golang.org/x/tools v0.39.0 // indirect
7372
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
74-
google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5 // indirect
75-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250825161204-c5933d9347a5 // indirect
76-
google.golang.org/protobuf v1.36.8 // indirect
73+
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
74+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
75+
google.golang.org/protobuf v1.36.10 // indirect
7776
)

0 commit comments

Comments
 (0)