Skip to content

Commit 66a1598

Browse files
authored
Merge pull request #41 from Team-MostWanted/bugfix/workflow
Bugfix/workflow
2 parents ac570d2 + a44e2c4 commit 66a1598

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

.github/workflows/auto-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Security Updates Workflow
22

33
on:
4-
# schedule:
5-
# - cron: '0 12 1-7 1,4,7,10 1' # first monday every January, April, July and October
4+
schedule:
5+
- cron: '0 12 1-7 1,4,7,10 1' # first monday every January, April, July and October
66
workflow_dispatch:
77

88
jobs:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with the minor change that we use a prefix instead of grouping.
55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.16.0] - 2024-10-14
8+
- Security: dependency and security updates
9+
710
## [1.15.0] - 2024-10-10
811
- Security: dependency and security updates (manually)
912

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,17 @@ dist: clean dist-check build dist-create
115115
update-go:
116116
$(GO) get go@latest
117117
# Remove patch level of GO version
118-
@sed -i "" -E 's/(go [0-9]+\.[0-9]+)\.[0-9]+/\1/' go.mod
118+
@sed -i.bak -E 's/(go [0-9]+\.[0-9]+)\.[0-9]+/\1/' go.mod
119+
@rm -f go.mod.bak
119120

120121
.PHONY: update-dependencies
121122
update-dependencies:
122123
$(GO) get -t -u $(PACKAGES)
123124
$(GO) mod tidy
124125

125126
# Adding lines to changelog
126-
@sed -i "" -e 's/\(## \[$(VERSION)\]\)/$(CHANGELOG_LINES)\1/' $(CHANGELOG)
127+
@sed -i.bak -e 's/\(## \[$(VERSION)\]\)/$(CHANGELOG_LINES)\1/' $(CHANGELOG)
128+
@rm -f $(CHANGELOG).bak
127129

128130
.PHONY: update-with-go
129131
update-with-go: clean update-go update-dependencies test

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1616
github.com/davecgh/go-spew v1.1.1 // indirect
1717
github.com/felixge/httpsnoop v1.0.4 // indirect
18-
github.com/klauspost/compress v1.17.10 // indirect
18+
github.com/klauspost/compress v1.17.11 // indirect
1919
github.com/kr/text v0.2.0 // indirect
2020
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
2121
github.com/pmezard/go-difflib v1.0.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
1212
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
1313
github.com/gorilla/handlers v1.5.2 h1:cLTUSsNkgcwhgRqvCNmdbRWG0A3N4F+M2nWKdScwyEE=
1414
github.com/gorilla/handlers v1.5.2/go.mod h1:dX+xVpaxdSw+q0Qek8SSsl3dfMk3jNddUkMzo0GtH0w=
15-
github.com/klauspost/compress v1.17.10 h1:oXAz+Vh0PMUvJczoi+flxpnBEPxoER1IaAnU/NMPtT0=
16-
github.com/klauspost/compress v1.17.10/go.mod h1:pMDklpSncoRMuLFrf1W9Ss9KT+0rH90U12bZKk7uwG0=
15+
github.com/klauspost/compress v1.17.11 h1:In6xLpyWOi1+C7tXUUWv2ot1QvBjxevKAaI6IXrJmUc=
16+
github.com/klauspost/compress v1.17.11/go.mod h1:pMDklpSncoRMuLFrf1W9Ss9KT+0rH90U12bZKk7uwG0=
1717
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
1818
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
1919
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=

0 commit comments

Comments
 (0)