-
-
Notifications
You must be signed in to change notification settings - Fork 164
only-new-issues: true
option seems broken since v6.3.0 and v6.3.1 releases
#1161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
## Why this should be merged Allows for `ava-labs/coreth` equivalent modifications of `rawdb.InspectDatabase()` through external logic injection. ## How this works Variadic options to: 1. Record a database statistic; 2. Mark a database statistic as metadata; 3. Filter statistics for printing. ## How this was tested Testable example acting as a unit test. --------- Signed-off-by: Arran Schlosberg <[email protected]> Co-authored-by: Quentin McGaw <[email protected]>
Hello, No changes have been made to this option since v6.2.0. The changes are about documentation, comments, and renaming. |
There are quite a few dependabot pull requests, could it be related? We did not change anything in our CI on last Friday where this problem started happening, and the CI will just trigger on unmodified file paths on pushes. |
🤔 https://github.com/ava-labs/libevm/actions/runs/13203150868/job/36859809588
https://github.com/ava-labs/libevm/actions/runs/13240000666/job/36958888508
|
Ok I think I found the problem. |
@qdm12 I created a new tag, you can update your CI if you want. |
@ldez we're still running into the same issue (for PRs created today) - is there anything we're doing wrong in https://github.com/kro-run/kro/blob/main/.github/workflows/golangci-lint.yaml#L1-L28 ? |
Today 🤔 in which timezone? (for me it's 4 am) Can you add a reference to the job? There is nothing wrong with the configuration of the GitHub Action. You are using an old version of golangci-lint (v1.60), the current is v1.64, but it's not a major problem. |
I checked the logs of some jobs: your problem is not related to this issue. You only have Maybe a problem with your
|
I think the change that happened "today" is the update of Go version (go1.23 -> go1.24) inside your CI.
So you must update the golangci-lint version to v1.64 |
Thank you very much for debugging this @ldez ! the golangci-lint version definitely needed an update. Really appreciate the PR to bump it to v1.64! Will take a look at our Go version pinning too - bit weird, AFAIK we're on 1.23/1.22 there. We'll sort that out separately. Thanks again! |
Welcome
Description of the problem
We use the action pinned as
@v6
and with the optiononly-new-issues: true
(full configuration)Since 3 days ago (2025-02-07) it seems the option
only-new-issues: true
has no effect only on pushes, given files not changed in the commit pushed (squashed and merged) are being linted.This can be seen in our commits CI reports of 2025-02-07 in our default branch: commit history
In particular, the last commit only modifies/adds the following files:
core/rawdb/database.go
core/rawdb/database.libevm.go
core/rawdb/database.libevm_test.go
But the action lints for example file
libevm/pseudo/rlp_test.go
(logs line) which is NOT part of that commit.And the commit before that one works as expected, however.
This might correlate with the v6.3.0 release.
Version of golangci-lint
v1.60.3
Version of the GitHub Action
v6
Workflow file
Golangci-lint configuration
https://github.com/ava-labs/libevm/blob/main/.github/workflows/golangci-lint.yml
https://github.com/ava-labs/libevm/blob/main/.libevm-header
Go version
1.20
Code example or link to a public repository
https://github.com/ava-labs/libevm/
The text was updated successfully, but these errors were encountered: