Skip to content

Commit

Permalink
Fix: Upgraded workflow actions versions and golang version
Browse files Browse the repository at this point in the history
Signed-off-by: Anoop Gopalakrishnan <[email protected]>
  • Loading branch information
anoop2811 committed Feb 11, 2025
1 parent 7869b45 commit c81766e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/addon-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
# Common versions
GO_VERSION: '1.19'
GO_VERSION: '1.22'


jobs:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/addon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
env:
URL: https://kubevela.github.io/catalog
GO_VERSION: 1.19
GO_VERSION: 1.22
runs-on: ubuntu-22.04
steps:
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}

- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: package-addon-gen-index
run: |
Expand All @@ -47,11 +47,11 @@ jobs:
mv ./*.tgz ../../docs/experimental/
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: docs/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit c81766e

Please sign in to comment.