diff options
author | Valery Piashchynski <[email protected]> | 2022-03-23 12:48:51 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-23 12:48:51 +0100 |
commit | f1c4803f1d1e20516e3b6e55cf9497ad4b774c3c (patch) | |
tree | c7064f1030b65279dd23d1b1f595eaa87907668b /.github/workflows/tests.yml | |
parent | ce7e4a12f7ff7731c57cb7edade4d7cace7a8c1b (diff) | |
parent | 6c87237f6f5e4e442efaf57987d36d79563e6848 (diff) |
[#1067]: fix(config): incorrect pointer assign to read the configurationv2.8.5
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 56581ed7..1a257311 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,12 +40,12 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.17.8 + go-version: 1.18 - name: Run linter uses: golangci/[email protected] with: - version: v1.44 # without patch version + version: v1.45 # without patch version only-new-issues: false # show only new issues if it's a pull request args: --build-tags=safe --timeout=10m |