Skip to content

Commit ec38a08

Browse files
authored
Merge pull request #118 from essentialkaos/develop
Version 13.2.1
2 parents 1a6ce82 + c7e002a commit ec38a08

File tree

6 files changed

+1899
-14
lines changed

6 files changed

+1899
-14
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ on:
1414
required: true
1515
type: choice
1616
options: [yes, no]
17+
no_cache:
18+
description: 'Do not use cached result'
19+
required: false
20+
default: 'no'
21+
type: choice
22+
options: [yes, no]
1723

1824
permissions:
1925
actions: read
@@ -31,17 +37,22 @@ jobs:
3137

3238
strategy:
3339
matrix:
34-
go: [ '1.18.x', '1.19.x', '1.20.x' ]
40+
go: [ '1.18.x', '1.19.x', '1.20.x', '1.21.x' ]
3541

3642
steps:
3743
- name: Checkout
38-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
3945

4046
- name: Set up Go
4147
uses: actions/setup-go@v4
4248
with:
4349
go-version: ${{ matrix.go }}
4450

51+
- name: Set environment variables
52+
if: ${{ inputs.no_cache == 'yes' }}
53+
run: |
54+
echo "NO_CACHE=1" >> $GITHUB_ENV
55+
4556
- name: Download dependencies
4657
run: make deps
4758

@@ -56,12 +67,12 @@ jobs:
5667

5768
steps:
5869
- name: Checkout
59-
uses: actions/checkout@v3
70+
uses: actions/checkout@v4
6071

6172
- name: Set up Go
6273
uses: actions/setup-go@v4
6374
with:
64-
go-version: '1.19.x'
75+
go-version: '1.20.x'
6576

6677
- name: Download dependencies
6778
run: make deps
@@ -79,7 +90,8 @@ jobs:
7990

8091
steps:
8192
- name: Checkout
82-
uses: actions/checkout@v3
93+
uses: actions/checkout@v4
8394

8495
- name: Check spelling
96+
continue-on-error: true
8597
uses: crate-ci/typos@master

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 2
2626

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
require (
66
github.com/essentialkaos/check v1.4.0
7-
github.com/valyala/fasthttp v1.47.0
7+
github.com/valyala/fasthttp v1.50.0
88
)
99

1010
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjR
1515
github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog=
1616
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
1717
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
18-
github.com/valyala/fasthttp v1.47.0 h1:y7moDoxYzMooFpT5aHgNgVOQDrS3qlkfiP9mDtGGK9c=
19-
github.com/valyala/fasthttp v1.47.0/go.mod h1:k2zXd82h/7UZc3VOdJ2WaUqt1uZ/XpXAfE9i+HBC3lA=
18+
github.com/valyala/fasthttp v1.50.0 h1:H7fweIlBm0rXLs2q0XbalvJ6r0CUPFWK3/bB4N13e9M=
19+
github.com/valyala/fasthttp v1.50.0/go.mod h1:k2zXd82h/7UZc3VOdJ2WaUqt1uZ/XpXAfE9i+HBC3lA=

0 commit comments

Comments
 (0)