Skip to content

Commit

Permalink
chore: update github actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
sloonz committed Oct 2, 2023
1 parent 03b4cb6 commit 01f0c52
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '^1.16.0'
go-version: '^1.21.1'
- run: make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-go@v2
- uses: actions/setup-go@v4
with:
go-version: '^1.16.0'
go-version: '^1.21.1'
- run: make SKIP_MARIADB_TESTS=1 test
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v2
- uses: actions/setup-go@v4
with:
go-version: '^1.16.0'
go-version: '^1.21.1'
- run: make GITHUB_TOKEN="${{secrets.GITHUB_TOKEN}}" release

0 comments on commit 01f0c52

Please sign in to comment.