Skip to content

Commit

Permalink
go.yml: update actions/checkout to v3, actions/setup-go to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
kbdharun committed Apr 28, 2023
1 parent 76629b5 commit e9d0790
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Expand Up @@ -50,10 +50,10 @@ jobs:
- run: psql -c 'create database certdb_development;' -U postgres;
- run: mysql -e 'create database certdb_development;' -u root;
- run: mysql -e 'SET global sql_mode = 0;' -u root;
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}

Expand All @@ -70,7 +70,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: 1.18
- uses: actions/checkout@v3
Expand Down

0 comments on commit e9d0790

Please sign in to comment.