Skip to content

Commit

Permalink
Update signer.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Umaaz authored Apr 17, 2024
1 parent f4a371e commit 6f8572d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/signer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ jobs:
GRAFANA_API_KEY: ${{ secrets.GRAFANA_API_KEY }} # Requires a Grafana API key from Grafana.com.
ROOT_URLS: ${{ inputs.rootUrls }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
repository: ${{ inputs.repository }}

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'

- name: Setup Go environment
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.22'

- name: Install dependencies
run: yarn install --immutable --prefer-offline
Expand All @@ -57,14 +57,14 @@ jobs:
- name: Test backend
if: steps.check-for-backend.outputs.has-backend == 'true'
uses: magefile/mage-action@v2
uses: magefile/mage-action@v3
with:
version: latest
args: coverage

- name: Build backend
if: steps.check-for-backend.outputs.has-backend == 'true'
uses: magefile/mage-action@v2
uses: magefile/mage-action@v3
with:
version: latest
args: buildAll
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
plugincheck2 -config ./plugin-validator/config/default.yaml ${{ steps.metadata.outputs.archive }}
- name: Create Github release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
name: ${{ inputs.repository }}.${{ inputs.ref }}
tag_name: ${{ inputs.repository }}.${{ inputs.ref }}
Expand Down

0 comments on commit 6f8572d

Please sign in to comment.