summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-09-05 00:03:03 +0000
committerDaniel Milde <daniel@milde.cz>2024-02-12 22:07:08 +0100
commit350227d991fb7df4bb2ef9a49e1672e26843e5af (patch)
treee8f80f444c09e52590f0d5793164dd6fdab68488
parentf2afa2a6444018321ec757ee639d0fee2d5968d4 (diff)
chore(deps): bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--.github/workflows/codeql-analysis.yml2
-rw-r--r--.github/workflows/test.yml6
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index e3b47c9..d760727 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -35,7 +35,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index b470790..c1a91b5 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -16,7 +16,7 @@ jobs:
with:
go-version: 1.18.x
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Run linters
uses: golangci/golangci-lint-action@v3
with:
@@ -35,7 +35,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Run tests
run: go test -v -covermode=count ./...
@@ -48,7 +48,7 @@ jobs:
with:
go-version: 1.18.x
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Calc coverage
run: |
go test -v -race -covermode=atomic -coverprofile=coverage.out ./...