Skip to content

Commit

Permalink
Update GHA action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
theandrew168 committed May 4, 2024
1 parent 1544d57 commit daf91d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
sudo apt purge -y postgresql-client-common
sudo apt install -y postgresql-client
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.22
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --rm-dist
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
sudo apt purge -y postgresql-client-common
sudo apt install -y postgresql-client
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Start containers
run: |
docker-compose up -d
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.22
- name: Run tests
run: |
go test ./...

0 comments on commit daf91d9

Please sign in to comment.