File tree Expand file tree Collapse file tree 4 files changed +17
-17
lines changed Expand file tree Collapse file tree 4 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 2
2
#
3
3
# devctl
4
4
#
5
- # https://github.com/giantswarm/devctl/blob/1a381db95a01773e471818a4ce56ad16ad5d6111 /pkg/gen/input/workflows/internal/file/create_release.yaml.template
5
+ # https://github.com/giantswarm/devctl/blob/c90dd09846d2e87f1bad62d2089405b78da11a82 /pkg/gen/input/workflows/internal/file/create_release.yaml.template
6
6
#
7
7
name : Create Release
8
8
on :
@@ -90,12 +90,12 @@ jobs:
90
90
- gather_facts
91
91
steps :
92
92
- name : Install architect
93
- uses : giantswarm/install-binary-action@033b1a657eea23d9c42e77312b370e6125e4e38f # v2 .0.0
93
+ uses : giantswarm/install-binary-action@c37eb401e5092993fc76d545030b1d1769e61237 # v3 .0.0
94
94
with :
95
95
binary : " architect"
96
96
version : " 6.14.1"
97
97
- name : Install semver
98
- uses : giantswarm/install-binary-action@033b1a657eea23d9c42e77312b370e6125e4e38f # v2 .0.0
98
+ uses : giantswarm/install-binary-action@c37eb401e5092993fc76d545030b1d1769e61237 # v3 .0.0
99
99
with :
100
100
binary : " semver"
101
101
version : " 3.2.0"
@@ -208,7 +208,7 @@ jobs:
208
208
if : ${{ needs.gather_facts.outputs.version }}
209
209
steps :
210
210
- name : Install semver
211
- uses : giantswarm/install-binary-action@033b1a657eea23d9c42e77312b370e6125e4e38f # v2 .0.0
211
+ uses : giantswarm/install-binary-action@c37eb401e5092993fc76d545030b1d1769e61237 # v3 .0.0
212
212
with :
213
213
binary : " semver"
214
214
version : " 3.0.0"
Original file line number Diff line number Diff line change 2
2
#
3
3
# devctl
4
4
#
5
- # https://github.com/giantswarm/devctl/blob/1a381db95a01773e471818a4ce56ad16ad5d6111 /pkg/gen/input/workflows/internal/file/create_release_pr.yaml.template
5
+ # https://github.com/giantswarm/devctl/blob/7345de0273fb431a392dc15f53961b523dba2b5e /pkg/gen/input/workflows/internal/file/create_release_pr.yaml.template
6
6
#
7
7
name : Create Release PR
8
8
on :
@@ -147,12 +147,12 @@ jobs:
147
147
steps :
148
148
- uses : actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
149
149
with :
150
- go-version : ' =1.18.1 '
150
+ go-version : ' =1.23 '
151
151
- name : Install architect
152
- uses : giantswarm/install-binary-action@033b1a657eea23d9c42e77312b370e6125e4e38f # v2 .0.0
152
+ uses : giantswarm/install-binary-action@c37eb401e5092993fc76d545030b1d1769e61237 # v3 .0.0
153
153
with :
154
154
binary : " architect"
155
- version : " 6.11 .0"
155
+ version : " 6.17 .0"
156
156
- name : Checkout code
157
157
uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
158
158
with :
@@ -205,7 +205,7 @@ jobs:
205
205
- name : Bump go module defined in go.mod if needed
206
206
run : |
207
207
if [ "${{ needs.gather_facts.outputs.needs_major_bump }}" = true ] && test -f "go.mod"; then
208
- go install github.com/marwan-at-work/mod/cmd/mod@v0.5.0
208
+ go install github.com/marwan-at-work/mod/cmd/mod@v0.7.1
209
209
mod upgrade
210
210
fi
211
211
- name : Set up git identity
Original file line number Diff line number Diff line change 2
2
#
3
3
# devctl
4
4
#
5
- # https://github.com/giantswarm/devctl/blob/0773061f94d5eac8a0e5b8f253bc15cc35a34066 /pkg/gen/input/workflows/internal/file/run_ossf_scorecard.yaml.template
5
+ # https://github.com/giantswarm/devctl/blob/515bdf66b25f68db4466f9fd8fa6104793785b78 /pkg/gen/input/workflows/internal/file/run_ossf_scorecard.yaml.template
6
6
#
7
7
8
8
# This workflow uses actions that are not certified by GitHub. They are provided
45
45
persist-credentials : false
46
46
47
47
- name : " Run analysis"
48
- uses : ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534 # v2.3.3
48
+ uses : ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
49
49
with :
50
50
results_file : results.sarif
51
51
results_format : sarif
@@ -67,14 +67,14 @@ jobs:
67
67
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
68
68
# format to the repository Actions tab.
69
69
- name : " Upload artifact"
70
- uses : actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
70
+ uses : actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
71
71
with :
72
72
name : SARIF file
73
73
path : results.sarif
74
74
retention-days : 5
75
75
76
76
# Upload the results to GitHub's code scanning dashboard.
77
77
- name : " Upload to code-scanning"
78
- uses : github/codeql-action/upload-sarif@530d4feaa9c62aaab2d250371e2061eb7a172363 # v3.25.9
78
+ uses : github/codeql-action/upload-sarif@f0f3afee809481da311ca3a6ff1ff51d81dbeb24 # v3.26.4
79
79
with :
80
80
sarif_file : results.sarif
Original file line number Diff line number Diff line change 2
2
#
3
3
# devctl
4
4
#
5
- # https://github.com/giantswarm/devctl/blob/d1e2552bd9e4ea8a8a87f8122b7dcfd1d82c707f /pkg/gen/input/makefile/internal/file/Makefile.gen.go.mk.template
5
+ # https://github.com/giantswarm/devctl/blob/fb22684ec4540f6b602968f01b4845bfb7713ee2 /pkg/gen/input/makefile/internal/file/Makefile.gen.go.mk.template
6
6
#
7
7
8
8
APPLICATION := $(shell go list -m | cut -d '/' -f 3)
@@ -63,15 +63,15 @@ $(APPLICATION)-windows-amd64.exe: $(APPLICATION)-v$(VERSION)-windows-amd64.exe
63
63
64
64
$(APPLICATION ) -v$(VERSION ) -% -amd64 : $(SOURCES )
65
65
@echo " ====> $@ "
66
- CGO_ENABLED=0 GOOS=$* GOARCH=amd64 go build -ldflags " $( LDFLAGS) " -o $@ .
66
+ CGO_ENABLED=0 GOOS=$* GOARCH=amd64 go build -trimpath - ldflags " $( LDFLAGS) " -o $@ .
67
67
68
68
$(APPLICATION ) -v$(VERSION ) -% -arm64 : $(SOURCES )
69
69
@echo " ====> $@ "
70
- CGO_ENABLED=0 GOOS=$* GOARCH=arm64 go build -ldflags " $( LDFLAGS) " -o $@ .
70
+ CGO_ENABLED=0 GOOS=$* GOARCH=arm64 go build -trimpath - ldflags " $( LDFLAGS) " -o $@ .
71
71
72
72
$(APPLICATION ) -v$(VERSION ) -windows-amd64.exe : $(SOURCES )
73
73
@echo " ====> $@ "
74
- CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags " $( LDFLAGS) " -o $@ .
74
+ CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -trimpath - ldflags " $( LDFLAGS) " -o $@ .
75
75
76
76
.PHONY : install
77
77
install : # # Install the application.
You can’t perform that action at this time.
0 commit comments