Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

Commit 13a3bb3

Browse files
committed
Updated all stuffs
1 parent 7ca237e commit 13a3bb3

File tree

6 files changed

+21
-17
lines changed

6 files changed

+21
-17
lines changed

Diff for: .github/workflows/buildAndTest.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
env:
17-
GO_VERSION: 1.18
18-
GOLANGCI_LINT_VERSION: v1.47.2
19-
YAEGI_VERSION: v0.13.0
17+
GO_VERSION: 1.23.0
18+
GOLANGCI_LINT_VERSION: v1.61.0
19+
YAEGI_VERSION: v0.16.1
2020
GOPATH: ${{ github.workspace }}/go
2121
CGO_ENABLED: 0
2222
defaults:
@@ -25,11 +25,11 @@ jobs:
2525

2626
steps:
2727
- name: Set up Go
28-
uses: actions/setup-go@v2
28+
uses: actions/setup-go@v5
2929
with:
3030
go-version: ${{ env.GO_VERSION }}
3131

32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v4
3333
with:
3434
path: go/src/github.com/${{ github.repository }}
3535
fetch-depth: 0
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Upload log artifacts
7272
if: always()
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: logs
7676
if-no-files-found: error

Diff for: .github/workflows/codacy-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
steps:
2525
# Checkout the repository to the GitHub Actions runner
2626
- name: Checkout code
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828

2929
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
3030
- name: Run Codacy Analysis CLI
31-
uses: codacy/codacy-analysis-cli-action@1.1.0
31+
uses: codacy/codacy-analysis-cli-action@4.4.5
3232
with:
3333
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
3434
# You can also omit the token and run the tools that support default configurations
@@ -44,6 +44,6 @@ jobs:
4444

4545
# Upload the SARIF file generated in the previous step
4646
- name: Upload SARIF results file
47-
uses: github/codeql-action/upload-sarif@v1
47+
uses: github/codeql-action/upload-sarif@v3
4848
with:
4949
sarif_file: results.sarif

Diff for: .github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v4
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: github/codeql-action/init@v3
4747
with:
4848
languages: ${{ matrix.language }}
4949
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -54,7 +54,7 @@ jobs:
5454
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5555
# If this step fails, then you should remove it and run the build manually (see below)
5656
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
57+
uses: github/codeql-action/autobuild@v3
5858

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
6868
# make release
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
71+
uses: github/codeql-action/analyze@v3

Diff for: .github/workflows/prodTest.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Upload log artifacts
2222
if: always()
23-
uses: actions/upload-artifact@v2
23+
uses: actions/upload-artifact@v4
2424
with:
2525
name: logs
2626
if-no-files-found: error

Diff for: README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ experimental:
3838
plugins:
3939
cloudflarewarp:
4040
modulename: github.com/BetterCorp/cloudflarewarp
41-
version: v1.3.0
41+
version: v1.4.0
4242
```
4343
4444
### Plugin configuration
@@ -82,3 +82,7 @@ We have written the following tests in this repo:
8282
- Live implementation tests (spin up traefik with the plugin definition as it would be for you, and run the same tests again)
8383
8484
These tests allow us to make sure the plugin is always functional with Traefik and Traefik version updates.
85+
86+
# Standing up the crowdsec bouncer plugin in traefik
87+
88+
See the following blog post for a walkthrough on how to stand up the crowdsec bouncer plugin in traefik: [https://bpto.li/H0JY11Zb](https://bpto.li/H0JY11Zb)

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/BetterCorp/cloudflarewarp
22

3-
go 1.18
3+
go 1.23.0
44

55
retract (
66
v1.0.0 // No longer supported - removed from releases re 1.2.0

0 commit comments

Comments
 (0)