@@ -41,12 +41,12 @@ jobs:
4141 echo "Tag version: $VERSION"
4242
4343 - name : Check out code
44- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
44+ uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
4545 with :
4646 persist-credentials : false
4747
4848 - name : Set up Go
49- uses : actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4 .0
49+ uses : actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5 .0
5050 with :
5151 go-version : 1
5252 check-latest : true
7878 MINISIGN_SK : ${{ secrets.MINISIGN_SK }}
7979 run : |
8080 sudo apt-get -y install libsodium-dev
81- git clone --depth 1 https://github.com/jedisct1/minisign.git
81+ MINISIGN_COMMIT=03ebc0dafb08a77e0548e9cbc4668a3588128de5 # 0.12
82+ git init minisign
83+ git -C minisign remote add origin https://github.com/jedisct1/minisign.git
84+ git -C minisign fetch --depth 1 origin "$MINISIGN_COMMIT"
85+ git -C minisign checkout --detach "$MINISIGN_COMMIT"
8286 cd minisign/src
8387 mkdir -p /tmp/bin
8488 cc -O2 -o /tmp/bin/minisign -D_GNU_SOURCE *.c -lsodium
@@ -126,7 +130,7 @@ jobs:
126130
127131 - name : Create release and upload assets
128132 id : create_release
129- uses : softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
133+ uses : softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1
130134 if : startsWith(github.ref, 'refs/tags/') && env.release_exists == 'false'
131135 env :
132136 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
@@ -144,7 +148,7 @@ jobs:
144148
145149 - name : Upload assets to existing release
146150 id : upload_to_existing_release
147- uses : softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
151+ uses : softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1
148152 if : startsWith(github.ref, 'refs/tags/') && env.release_exists == 'true'
149153 env :
150154 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments