File tree 4 files changed +15
-9
lines changed
4 files changed +15
-9
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " github-actions"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " weekly"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ permissions:
11
11
12
12
jobs :
13
13
build :
14
- runs-on : [ ubuntu-latest ]
14
+ runs-on : [ubuntu-latest]
15
15
16
16
concurrency :
17
17
# Cancel intermediate builds
@@ -22,26 +22,26 @@ jobs:
22
22
23
23
steps :
24
24
- name : Checkout
25
- uses : actions/checkout@v4
25
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@ v4
26
26
27
27
- name : Go
28
28
uses : ./.github/workflows/composite/go
29
29
30
30
- name : Build
31
31
run : make clean lint prepare build pack
32
-
32
+
33
33
- name : Environment
34
34
run : |
35
35
echo "GOARCH=$(go env GOARCH)" >> $GITHUB_ENV
36
36
echo "GOOS=$(go env GOOS)" >> $GITHUB_ENV
37
37
echo "BRANCH=$(echo ${{ github.ref_name }} | tr -C '[a-z0-9-\n]' '_')" >> $GITHUB_ENV
38
38
39
39
- name : Upload Artifact
40
- uses : actions/upload-artifact@v4
40
+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # ratchet:actions/upload-artifact@ v4
41
41
with :
42
42
name : k6-${{env.GOARCH}}-${{env.GOOS}}-${{ env.BRANCH }}.tar.gz
43
43
path : ./bin/*.tar.gz
44
44
if-no-files-found : warn
45
45
overwrite : true
46
- retention-days : 3 # we need it just for releases
46
+ retention-days : 3 # we need it just for releases
47
47
compression-level : 0 # this is already a gzipped archive
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ permissions:
15
15
16
16
jobs :
17
17
verify :
18
- runs-on : [ ubuntu-latest ]
18
+ runs-on : [ubuntu-latest]
19
19
20
20
concurrency :
21
21
# Cancel intermediate builds
26
26
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v4
29
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@ v4
30
30
31
31
- name : Go
32
32
uses : ./.github/workflows/composite/go
Original file line number Diff line number Diff line change 4
4
using : composite
5
5
steps :
6
6
- name : Setup Go
7
- uses : actions/setup-go@v5
7
+ uses : actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # ratchet:actions/setup-go@ v5
8
8
with :
9
9
go-version : ' 1.22'
10
10
11
11
- name : golangci-lint
12
- uses : golangci/golangci-lint-action@v6
12
+ uses : golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # ratchet:golangci/golangci-lint-action@ v6
13
13
with :
14
14
version : v1.58.2
15
15
args : --verbose --concurrency=2 --timeout=600s
You can’t perform that action at this time.
0 commit comments