Skip to content

Commit

Permalink
Merge pull request #266 from travier/main-actions-setup-go-5
Browse files Browse the repository at this point in the history
go: bump actions/setup-go from 4 to 5
  • Loading branch information
travier authored Nov 21, 2024
2 parents 8531adb + f64c5ac commit 4ca4fea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go/tests-ignition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: {% raw %}${{ matrix.os }}{% endraw %}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: {% raw %}${{ matrix.go-version }}{% endraw %}
- name: Check out repository
Expand Down
6 changes: 3 additions & 3 deletions go/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
{%- endif %}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: {% raw %}${{ matrix.go-version }}{% endraw %}
- name: Check out repository
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: {{ go_test_cmd }}
{%- if do_go_lint %}
- name: Run linter
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
{%- if do_multi_os %}
if: runner.os == 'Linux'
{%- endif %}
Expand All @@ -91,7 +91,7 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: {{ go_versions | last }}
{%- if go_generate_with_schematyper %}
Expand Down

0 comments on commit 4ca4fea

Please sign in to comment.