Skip to content

Commit

Permalink
security: Bump Go version to get rid of CVEs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mturoci committed Jun 14, 2024
1 parent 463c195 commit a90b902
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 22 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/release-wave-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:

- uses: actions/setup-go@v4
with:
go-version: '1.19.4'
go-version: "1.22.4"

- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
node-version-file: ".nvmrc"

- name: Setup
run: |
Expand All @@ -64,7 +64,7 @@ jobs:
make setup-e2e
make build-server
env:
NODE_OPTIONS: '--max-old-space-size=8192'
NODE_OPTIONS: "--max-old-space-size=8192"

- name: Test
run: |
Expand All @@ -91,17 +91,17 @@ jobs:

- uses: actions/setup-go@v4
with:
go-version: '1.19.4'
go-version: "1.22.4"

- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
node-version-file: ".nvmrc"

- name: Setup
run: .\setup.ps1
shell: pwsh
env:
NODE_OPTIONS: '--max-old-space-size=8192'
NODE_OPTIONS: "--max-old-space-size=8192"

- name: Test
run: .\test.ps1
Expand Down Expand Up @@ -132,11 +132,11 @@ jobs:

- uses: actions/setup-go@v4
with:
go-version: '1.19.4'
go-version: "1.22.4"

- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
node-version-file: ".nvmrc"

- name: Setup
run: |
Expand All @@ -146,7 +146,7 @@ jobs:
make setup-e2e
make build-server
env:
NODE_OPTIONS: '--max-old-space-size=8192'
NODE_OPTIONS: "--max-old-space-size=8192"

- name: Test
run: |
Expand All @@ -155,7 +155,7 @@ jobs:
make test-vsc-ci
env:
KC_SLEEP: 45

release:
needs: [test-linux, test-win, test-macos, check-last-commit]
name: Release Wave Nightly
Expand All @@ -170,11 +170,11 @@ jobs:

- uses: actions/setup-go@v4
with:
go-version: '1.19.4'
go-version: "1.22.4"

- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
node-version-file: ".nvmrc"

- name: Setup
run: make setup
Expand All @@ -193,7 +193,7 @@ jobs:
- name: Build Release
run: make release-nightly
env:
NODE_OPTIONS: '--max-old-space-size=8192'
NODE_OPTIONS: "--max-old-space-size=8192"

- name: Update tag
run: git tag -f ${{ env.TAG }} && git push -f --tags
Expand Down Expand Up @@ -236,4 +236,5 @@ jobs:
tag_name: ${{ env.TAG }}
prerelease: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/release-wave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- uses: actions/setup-go@v1
with:
go-version: "1.22.1"
go-version: "1.22.4"

- uses: actions/setup-node@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-wavedb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/setup-go@v1
with:
go-version: "1.22.1"
go-version: "1.22.4"
- uses: actions/checkout@v2
with:
token: ${{ secrets.GIT_TOKEN }}
Expand All @@ -41,7 +41,7 @@ jobs:
steps:
- uses: actions/setup-go@v1
with:
go-version: "1.22.1"
go-version: "1.22.4"
- uses: actions/checkout@v2
with:
token: ${{ secrets.GIT_TOKEN }}
Expand All @@ -60,7 +60,7 @@ jobs:
steps:
- uses: actions/setup-go@v1
with:
go-version: "1.22.1"
go-version: "1.22.4"
- uses: actions/checkout@v2
with:
token: ${{ secrets.GIT_TOKEN }}
Expand Down

0 comments on commit a90b902

Please sign in to comment.