aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Juan Calderon-Perez <835733+gaby@users.noreply.github.com> 2024-02-10 04:32:59 -0500
committerGravatar GitHub <noreply@github.com> 2024-02-10 10:32:59 +0100
commit9fa5688b6891fdc321133523adff3a4857d2f779 (patch)
tree9b3a342c83fab691e8d804b31497ef537cf51433
parentImplement `GetRejectedConnectionsCount` function (#1704) (diff)
downloadfasthttp-9fa5688b6891fdc321133523adff3a4857d2f779.tar.gz
fasthttp-9fa5688b6891fdc321133523adff3a4857d2f779.tar.bz2
fasthttp-9fa5688b6891fdc321133523adff3a4857d2f779.zip
Update all github actions, add go1.22 (#1707)
-rw-r--r--.github/dependabot.yml10
-rw-r--r--.github/workflows/cifuzz.yml2
-rw-r--r--.github/workflows/lint.yml4
-rw-r--r--.github/workflows/security.yml2
-rw-r--r--.github/workflows/test.yml6
5 files changed, 17 insertions, 7 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..f34f8db
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,10 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ - package-ecosystem: "gomod"
+ directory: "/"
+ schedule:
+ interval: "daily" \ No newline at end of file
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml
index 5f5fa74..1d0603d 100644
--- a/.github/workflows/cifuzz.yml
+++ b/.github/workflows/cifuzz.yml
@@ -19,7 +19,7 @@ jobs:
dry-run: false
language: go
- name: Upload Crash
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index cd41c03..1ca2ed1 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -8,8 +8,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-go@v4
+ - uses: actions/checkout@v4
+ - uses: actions/setup-go@v5
with:
go-version: 1.20.x
- run: go version
diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml
index 5c592ad..31c0eda 100644
--- a/.github/workflows/security.yml
+++ b/.github/workflows/security.yml
@@ -14,7 +14,7 @@ jobs:
env:
GO111MODULE: on
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Run Gosec Security Scanner
uses: securego/gosec@v2.17.0
with:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8f5c3d8..5b0430d 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,12 +9,12 @@ jobs:
strategy:
fail-fast: false
matrix:
- go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x]
+ go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-go@v4
+ - uses: actions/checkout@v4
+ - uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}