fix: use tag refs instead of commit SHA for all actions
Release / build (amd64) (push) Successful in 51s
Release / build (arm64) (push) Successful in 44s

This commit is contained in:
datadunia
2026-05-08 00:17:23 +07:00
parent 7b02527200
commit 0c6bac4c22
+4 -4
View File
@@ -36,12 +36,12 @@ jobs:
# ls -la app/ # ls -la app/
# ls -la app/frontend || echo "Frontend folder not found" # ls -la app/frontend || echo "Frontend folder not found"
- name: Setup Go - name: Setup Go
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff uses: actions/setup-go@v5
with: with:
go-version: '1.22' go-version: '1.22'
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 uses: actions/setup-node@v4
with: with:
node-version: '20' node-version: '20'
@@ -60,7 +60,7 @@ jobs:
go build -o ../wgrplane-linux-${{ matrix.goarch }} . go build -o ../wgrplane-linux-${{ matrix.goarch }} .
- name: Upload binary artifact - name: Upload binary artifact
uses: actions/upload-artifact@ff15f03 uses: actions/upload-artifact@v3
with: with:
name: wgrplane-linux-${{ matrix.goarch }} name: wgrplane-linux-${{ matrix.goarch }}
path: wgrplane-linux-${{ matrix.goarch }} path: wgrplane-linux-${{ matrix.goarch }}
@@ -87,7 +87,7 @@ jobs:
EOF EOF
- name: Upload latest.json artifact - name: Upload latest.json artifact
uses: actions/upload-artifact@ff15f03 uses: actions/upload-artifact@v3
with: with:
name: latest.json name: latest.json
path: latest.json path: latest.json