Update the achievements plugin action.
This commit is contained in:
@@ -34,6 +34,31 @@ jobs:
|
||||
- name: ci/checkout-repo
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: ci/setup-node
|
||||
uses: actions/setup-node@v4
|
||||
if: ${{ inputs.node_version }}
|
||||
with:
|
||||
node-version: "${{ inputs.node_version }}"
|
||||
|
||||
- name: Setup yarn
|
||||
run: npm install -g yarn
|
||||
|
||||
- name: ci/setup-go
|
||||
uses: actions/setup-go@v4
|
||||
if: ${{ inputs.go_version && inputs.go_cache != 'false' }}
|
||||
with:
|
||||
go-version: "${{ inputs.go_version }}"
|
||||
cache-dependency-path: |
|
||||
go.sum
|
||||
server/go.sum
|
||||
|
||||
- name: ci/setup-go-wo-cache
|
||||
uses: actions/setup-go@v4
|
||||
if: ${{ inputs.go_version && inputs.go_cache == 'false' }}
|
||||
with:
|
||||
go-version: "${{ inputs.go_version }}"
|
||||
cache: false
|
||||
|
||||
- id: publish-secrets
|
||||
name: ci/publish-secrets
|
||||
uses: https://github.com/hashicorp/vault-action@v2
|
||||
|
||||
Reference in New Issue
Block a user