Skip to content

Commit 245526a

Browse files
Fix release CI (#75)
1 parent 6ece30d commit 245526a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
opalVersion: ${{ steps.opalVersion.outputs.opalVersion }}
1212
steps:
1313
- name: checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
- name: nodejs 12
@@ -20,7 +20,7 @@ jobs:
2020
node-version: '12.x'
2121
- name: cache node_modules
2222
id: nodeCache
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: |
2626
./node_modules
@@ -38,11 +38,11 @@ jobs:
3838
id: opalVersion
3939
run: |
4040
cat /tmp/opal.version
41-
echo "::set-output name=opalVersion::$(cat /tmp/opal.version)"
41+
echo "opalVersion=$(cat /tmp/opal.version)" >> $GITHUB_OUTPUT
4242
- uses: azure/setup-helm@v1
4343
- run: helm package . --version ${{ steps.opalVersion.outputs.opalVersion }}
4444
- name: upload artifact
45-
uses: actions/upload-artifact@v2
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: "helm"
4848
path: "opal-${{ steps.opalVersion.outputs.opalVersion }}.tgz"
@@ -53,7 +53,7 @@ jobs:
5353
needs: build_chart_job
5454
steps:
5555
- name: checkout gh-pages
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v4
5757
with:
5858
ref: gh-pages
5959
- name: download artifact

0 commit comments

Comments
 (0)