diff --git a/go/tests-ignition.yml b/go/tests-ignition.yml index e6dc0a6..3ae738d 100644 --- a/go/tests-ignition.yml +++ b/go/tests-ignition.yml @@ -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 diff --git a/go/tests.yml b/go/tests.yml index 36c3383..4203cb2 100644 --- a/go/tests.yml +++ b/go/tests.yml @@ -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 @@ -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 %} @@ -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 %}