Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
timohirt committed Dec 3, 2024
1 parent e5c98a0 commit a6351cf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 22 deletions.
21 changes: 8 additions & 13 deletions .github/workflows/lint-test-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,19 @@ jobs:
name: Lint-Test-Build
runs-on: ubuntu-latest
steps:
-
name: Set up Go
uses: actions/setup-go@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.16
-
name: Check out code
uses: actions/checkout@v2
-
name: Run linter
go-version: 1.17
- name: Check out code
uses: actions/checkout@v4
- name: Run linter
run: make lint
-
name: Run acceptance tests
- name: Run acceptance tests
env:
HETZNER_DNS_API_TOKEN: ${{ secrets.HETZNER_DNS_API_TOKEN }}
run: make testacc
-
name: Build
- name: Build
run: make build


Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ jobs:
name: Release on GitHub
runs-on: ubuntu-latest
steps:
-
name: Check out code
uses: actions/checkout@v2
-
name: Set up go
uses: actions/setup-go@v2
- name: Check out code
uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v5
with:
go-version: 1.17.3
-
name: Create release on GitHub
go-version: 1.17
- name: Create release on GitHub
uses: goreleaser/goreleaser-action@v2
with:
version: latest
Expand Down

0 comments on commit a6351cf

Please sign in to comment.