Skip to content

Commit

Permalink
cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
enr committed Aug 5, 2024
1 parent ec78c44 commit e45b642
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit e45b642

Please sign in to comment.