From 50af98b2e0bd397fdf81c84a284120901043e90c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 18:24:36 +0900 Subject: [PATCH] Bump the github-actions group across 1 directory with 3 updates (#599) Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4.2.1 to 4.2.2 - [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/v4.2.1...v4.2.2) Updates `actions/setup-go` from 5.0.2 to 5.1.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5.0.2...v5.1.0) Updates `github/codeql-action` from 3.26.12 to 3.27.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3.26.12...v3.27.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/benchmark.yml | 6 +++--- .github/workflows/codeql.yml | 6 +++--- .github/workflows/go.yml | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 6b70f04..9242486 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -12,11 +12,11 @@ jobs: steps: # Base for comparison is master branch. - name: Checkout code - uses: actions/checkout@v4.2.1 + uses: actions/checkout@v4.2.2 with: ref: master - name: Install Go - uses: actions/setup-go@v5.0.2 + uses: actions/setup-go@v5.1.0 with: go-version-file: 'go.mod' @@ -25,7 +25,7 @@ jobs: # runner is in a shared environment and CPU and mem would be affected by others. (or so I think) - run: go test -run=none -bench=. -count=30 -benchtime=100ms -timeout=20m > /tmp/prev - name: Checkout code - uses: actions/checkout@v4.2.1 + uses: actions/checkout@v4.2.2 - run: go test -run=none -bench=. -count=30 -benchtime=100ms -timeout=20m > /tmp/curr - run: go install golang.org/x/perf/cmd/benchstat@latest diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8614660..ea4df31 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,13 +20,13 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v4.2.1 + uses: actions/checkout@v4.2.2 - name: Initialize CodeQL - uses: github/codeql-action/init@v3.26.12 + uses: github/codeql-action/init@v3.27.0 with: languages: go queries: security-and-quality - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3.26.12 + uses: github/codeql-action/analyze@v3.27.0 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9db3515..c158f02 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4.2.1 + uses: actions/checkout@v4.2.2 - name: Install Go - uses: actions/setup-go@v5.0.2 + uses: actions/setup-go@v5.1.0 with: go-version-file: 'go.mod' - name: Run linters @@ -27,10 +27,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4.2.1 + uses: actions/checkout@v4.2.2 - name: Install Go if: success() - uses: actions/setup-go@v5.0.2 + uses: actions/setup-go@v5.1.0 with: go-version-file: 'go.mod' - run: go test -race ./...