Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit 42d15d1

Browse files
authored
Merge pull request #524 from vania-pooh/master
Golang 1.21.5
2 parents 9b6d7c1 + 3a50142 commit 42d15d1

File tree

4 files changed

+32
-4
lines changed

4 files changed

+32
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set Golang
1414
uses: actions/setup-go@v4
1515
with:
16-
go-version: ~1.20.4
16+
go-version: ~1.21.5
1717

1818
- uses: actions/cache@v3
1919
with:

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
- name: Set Golang
1313
uses: actions/setup-go@v2
1414
with:
15-
go-version: ~1.20.4
16-
15+
go-version: ~1.21.5
1716
- uses: actions/cache@v3
1817
with:
1918
path: ~/go/pkg/mod

.github/workflows/stale.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v9
11+
with:
12+
stale-issue-message: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
days-before-stale: 60
17+
days-before-close: 7
18+
stale-issue-label: stale
19+
exempt-issue-labels:
20+
- new-feature
21+
- bug
22+
- improvement
23+
- docs
24+
- go
25+
- javascript
26+
- on-hold
27+
- question
28+
- security
29+
- WIP

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set Golang
1212
uses: actions/setup-go@v4
1313
with:
14-
go-version: ~1.20.4
14+
go-version: ~1.21.5
1515

1616
- uses: actions/cache@v3
1717
with:

0 commit comments

Comments
 (0)