Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Bump flake.lock and related dependencies (#14)
Browse files Browse the repository at this point in the history
* flake.lock: Update

Flake lock file updates:

• Updated input 'edge-nixpkgs':
    'github:NixOS/nixpkgs/d8fe5e6c92d0d190646fb9f1056741a229980089' (2024-03-29)
  → 'github:NixOS/nixpkgs/fd281bd6b7d3e32ddfa399853946f782553163b5' (2024-04-03)
• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/219951b495fc2eac67b1456824cc1ec1fd2ee659' (2024-03-28)
  → 'github:NixOS/nixpkgs/1487bdea619e4a7a53a4590c475deabb5a9d1bfb' (2024-04-03)

* Sync CI dependencies with nixpkgs

* `typos . .github .vscode --write-changes`

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Kenichi Kamiya <kachick1@gmail.com>
  • Loading branch information
3 people authored Apr 5, 2024
1 parent b45ca79 commit bd1b394
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@v1.19.0 # selfup { "regex": "\\d\\.\\d+\\.\\d+", "script": "typos --version | cut -d ' ' -f 2" }
- uses: crate-ci/typos@v1.20.3 # selfup { "regex": "\\d\\.\\d+\\.\\d+", "script": "typos --version | cut -d ' ' -f 2" }
with:
files: |
.
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/googleapi/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func TestBuildGoogleApiPostXml(t *testing.T) {
Ap: "external-stable-universal",
})
if err != nil {
t.Fatalf("unexpected error happned: %+v", err)
t.Fatalf("unexpected error happened: %+v", err)
}
})
}
4 changes: 2 additions & 2 deletions internal/googleapi/send_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestPostGoogleAPI(t *testing.T) {
}, tc.input)
if err != nil {
if tc.ok {
t.Fatalf("unexpected error happned: %v", err)
t.Fatalf("unexpected error happened: %v", err)
} else {
return
}
Expand All @@ -79,7 +79,7 @@ func TestPostGoogleAPI(t *testing.T) {
urls, err := GetPermalinks(resp)
if err != nil {
if tc.ok {
t.Fatalf("unexpected error happned: %v", err)
t.Fatalf("unexpected error happened: %v", err)
} else {
return
}
Expand Down
2 changes: 1 addition & 1 deletion internal/taggedurl/taggedurl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func TestParseTaggedURL(t *testing.T) {

if err != nil {
if tc.ok {
t.Fatalf("unexpected error happned: %v", err)
t.Fatalf("unexpected error happened: %v", err)
} else {
return
}
Expand Down

0 comments on commit bd1b394

Please sign in to comment.