Skip to content

Commit a0959e6

Browse files
Merge pull request #48 from KristjanPikhof/dependabot/github_actions/goreleaser/goreleaser-action-7.2.2
Bump goreleaser/goreleaser-action from 6.4.0 to 7.2.2
2 parents a3bdf4b + 65ec858 commit a0959e6

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
go-version: ${{ env.GO_VERSION }}
3131
cache: true
32-
- uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6
32+
- uses: goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89 # v7.2.2
3333
with:
3434
version: '~> v2'
3535
args: release --clean

internal/daemon/daemon_test.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2933,6 +2933,11 @@ func TestRun_SameSHARewindAcrossTicksTriggersGrace(t *testing.T) {
29332933

29342934
wakeCh := make(chan struct{}, 4)
29352935
shutdownCh := make(chan struct{}, 1)
2936+
manual := Scheduler{
2937+
Base: 1 * time.Hour,
2938+
IdleCeiling: 1 * time.Hour,
2939+
ErrorCeiling: 1 * time.Hour,
2940+
}
29362941
runCtx, cancel := context.WithCancel(ctx)
29372942
defer cancel()
29382943

@@ -2944,7 +2949,7 @@ func TestRun_SameSHARewindAcrossTicksTriggersGrace(t *testing.T) {
29442949
RepoPath: f.dir,
29452950
GitDir: f.gitDir,
29462951
DB: f.db,
2947-
Scheduler: fastScheduler(),
2952+
Scheduler: manual,
29482953
BootGrace: 30 * time.Second,
29492954
WakeCh: wakeCh,
29502955
ShutdownCh: shutdownCh,

0 commit comments

Comments
 (0)