1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 05:40:11 +01:00

Merge pull request #615 from gocsaf/dev-19

update runner for release to 22.04, other actions and go version, thus also newer glibc
This commit is contained in:
JanHoefelmeyer 2025-03-03 11:08:38 +01:00 committed by GitHub
commit 20fdffa5cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 11 deletions

View file

@ -7,9 +7,9 @@ jobs:
steps: steps:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v3 uses: actions/setup-go@v5
with: with:
go-version: 1.22.0 go-version: '^1.23.6'
- name: Set up Node.js - name: Set up Node.js
uses: actions/setup-node@v3 uses: actions/setup-node@v3
@ -17,7 +17,7 @@ jobs:
node-version: 16 node-version: 16
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Execute the scripts - name: Execute the scripts
run: | run: |
@ -36,7 +36,7 @@ jobs:
shell: bash shell: bash
- name: Upload test results - name: Upload test results
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: checker-results name: checker-results
path: | path: |

View file

@ -7,23 +7,23 @@ on:
jobs: jobs:
releases-matrix: releases-matrix:
name: Release Go binaries name: Release Go binaries
runs-on: ubuntu-20.04 runs-on: ubuntu-22.04
permissions: permissions:
contents: write contents: write
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v3 uses: actions/setup-go@v5
with: with:
go-version: '^1.21.0' go-version: '^1.23.6'
- name: Build - name: Build
run: make dist run: make dist
- name: Upload release assets - name: Upload release assets
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v2
with: with:
files: | files: |
dist/csaf-*.zip dist/csaf-*.zip

View file

@ -79,7 +79,7 @@ Download the binaries from the most recent release assets on Github.
### Build from sources ### Build from sources
- A recent version of **Go** (1.22+) should be installed. [Go installation](https://go.dev/doc/install) - A recent version of **Go** (1.23+) should be installed. [Go installation](https://go.dev/doc/install)
- Clone the repository `git clone https://github.com/gocsaf/csaf.git ` - Clone the repository `git clone https://github.com/gocsaf/csaf.git `

View file

@ -3,7 +3,7 @@
## Supported Go versions ## Supported Go versions
We support the latest version and the one before We support the latest version and the one before
the latest version of Go (currently 1.22 and 1.23). the latest version of Go (currently 1.23 and 1.24).
## Generated files ## Generated files