diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 689e5ff..d799cf7 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -15,16 +15,16 @@ jobs: build: strategy: matrix: - go-version: [1.19.x] + go-version: [1.22.x] platform: [windows-latest] runs-on: ${{ matrix.platform }} steps: - name: Install Go ${{ matrix.go-version }} - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Test run: | .sdlc/build.cmd diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac5991d..6d426bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,16 +15,16 @@ jobs: build: strategy: matrix: - go-version: [1.19.x] + go-version: [1.22.x] platform: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.platform }} steps: - name: Install Go ${{ matrix.go-version }} - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Test run: | .sdlc/build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aedc380..9d5f224 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,14 +12,14 @@ jobs: matrix: platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} - container: 'golang:1.19' + container: 'golang:1.22' steps: - name: Prepare container run: | apt-get update -y apt-get -y install zip - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Create release env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 55f0fea..a585d42 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -8,14 +8,14 @@ on: jobs: build: runs-on: ubuntu-latest - container: 'asciidoctor/docker-asciidoctor:1.3.2' + container: 'asciidoctor/docker-asciidoctor:1.36.0' steps: - name: Prepare container run: | echo Preparing container apk --update add git - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Create website env: GH_TOKEN: ${{ secrets.ACTION_ACCESS_TOKEN }}