Skip to content

Commit 5fbf30a

Browse files
authored
Update workflow config and .gitignore (#266)
* updated workflow configuration of GitHub Actions to run versions that run on node20 instead due to deprecation * updated .gitignore with an entry for .DS_Store files * as separate PR (corresponding to commit 5e813ea)
1 parent deb4d25 commit 5fbf30a

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
name: lint
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
20-
- uses: actions/setup-go@v4
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-go@v5
2121
with:
2222
go-version: "1.23.1"
2323
cache: false
2424
- name: golangci-lint
25-
uses: golangci/golangci-lint-action@v3
25+
uses: golangci/golangci-lint-action@v6
2626
with:
2727
# Require: The version of golangci-lint to use.
2828
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,5 +199,9 @@ dist
199199
scripts/*/result
200200

201201
# random intelliJ stuff for the unintelligent coder
202-
.idea/*
202+
.idea
203+
204+
# .DS_Store files from MacOS that are automatically created
205+
.DS_Store
206+
203207
.vercel

0 commit comments

Comments
 (0)