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

Commit c62831b

Browse files
authored
Merge pull request #345 from vania-pooh/master
Golang 1.21.5
2 parents 16b4b32 + 2e52968 commit c62831b

File tree

5 files changed

+26
-22
lines changed

5 files changed

+26
-22
lines changed

.github/stale.yml

-19
This file was deleted.

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Golang
1515
uses: actions/setup-go@v3
1616
with:
17-
go-version: ~1.20.0
17+
go-version: ~1.21.5
1818

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

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup Golang
1414
uses: actions/setup-go@v3
1515
with:
16-
go-version: ~1.20.0
16+
go-version: ~1.21.5
1717

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

.github/workflows/stale.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Golang
1313
uses: actions/setup-go@v3
1414
with:
15-
go-version: ~1.20.0
15+
go-version: ~1.21.5
1616

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

0 commit comments

Comments
 (0)