@@ -20,11 +20,11 @@ jobs:
2020 name : go mod download
2121 runs-on : ubuntu-latest
2222 steps :
23- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
23+ - uses : actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2424 - uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2525 with :
2626 go-version-file : tools/go.mod
27- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
27+ - uses : actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
2828 continue-on-error : true
2929 id : cache-go-pkg-mod
3030 timeout-minutes : 2
@@ -40,22 +40,22 @@ jobs:
4040 needs : [go_mod_download]
4141 runs-on : ubuntu-latest
4242 steps :
43- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
43+ - uses : actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
4444 - uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
4545 with :
4646 go-version-file : tools/go.mod
4747 - name : GOCACHE
4848 run : |
4949 echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
50- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
50+ - uses : actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
5151 continue-on-error : true
5252 timeout-minutes : 2
5353 with :
5454 # TODO: Replace with supported mechanism when it is supported
5555 # https://github.com/actions/setup-go/issues/54
5656 path : ${{ env.GOCACHE }}
5757 key : ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
58- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
58+ - uses : actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
5959 continue-on-error : true
6060 timeout-minutes : 2
6161 with :
@@ -70,22 +70,22 @@ jobs:
7070 needs : [go_mod_download]
7171 runs-on : ubuntu-latest
7272 steps :
73- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
73+ - uses : actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
7474 - uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
7575 with :
7676 go-version-file : tools/go.mod
7777 - name : GOCACHE
7878 run : |
7979 echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
80- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
80+ - uses : actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
8181 continue-on-error : true
8282 timeout-minutes : 2
8383 with :
8484 # TODO: Replace with supported mechanism when it is supported
8585 # https://github.com/actions/setup-go/issues/54
8686 path : ${{ env.GOCACHE }}
8787 key : ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
88- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
88+ - uses : actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
8989 continue-on-error : true
9090 timeout-minutes : 2
9191 with :
@@ -98,30 +98,30 @@ jobs:
9898 semgrep :
9999 runs-on : ubuntu-latest
100100 steps :
101- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
101+ - uses : actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
102102 - name : semgrep
103103 uses : returntocorp/semgrep-action@713efdd345f3035192eaa63f56867b88e63e4e5d # v1
104104
105105 importlint :
106106 needs : [go_mod_download]
107107 runs-on : ubuntu-latest
108108 steps :
109- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
109+ - uses : actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
110110 - uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
111111 with :
112112 go-version-file : tools/go.mod
113113 - name : GOCACHE
114114 run : |
115115 echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
116- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
116+ - uses : actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
117117 continue-on-error : true
118118 timeout-minutes : 2
119119 with :
120120 # TODO: Replace with supported mechanism when it is supported
121121 # https://github.com/actions/setup-go/issues/54
122122 path : ${{ env.GOCACHE }}
123123 key : ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
124- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
124+ - uses : actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
125125 continue-on-error : true
126126 timeout-minutes : 2
127127 with :
0 commit comments