Skip to content

Commit

Permalink
ci: Updating out of date actions and bumping CI to Go 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
xntrik committed Mar 29, 2023
1 parent 9263a41 commit f54bcba
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/hcltm-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.19'
go-version: '1.20'
- name: Bootstrap
run: make bootstrap
- name: Test
Expand All @@ -37,11 +37,11 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.19'
go-version: '1.20'
- name: Bootstrap
run: make bootstrap
- name: Package
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/hcltm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.19'
go-version: '1.20'
- name: Bootstrap
run: make bootstrap
- name: Test
Expand All @@ -35,11 +35,11 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.19'
go-version: '1.20'
- name: Bootstrap
run: make bootstrap
- name: Package
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/hcltm-testvet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.19'
go-version: '1.20'
- name: Vet
run: make vet
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snyk-container-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
environment: snyk-action
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build a Docker image
run: docker build -t xntrik/hcltm-snyk .
- name: Run Snyk to check Docker image for vulnerabilities
Expand Down

0 comments on commit f54bcba

Please sign in to comment.