Skip to content

Commit f7b420a

Browse files
authored
Merge pull request #251 from gofiber/dependabot/github_actions/actions/checkout-3
build(deps): bump actions/checkout from 2 to 3
2 parents db463ec + 699bb83 commit f7b420a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/codeql-analysis.yml

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

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
with:
2121
# We must fetch at least the immediate parents so that if this is
2222
# a pull request then we can checkout the head.

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Fetch Repository
8-
uses: actions/checkout@v2
8+
uses: actions/checkout@v3
99
- name: Run Golint
1010
uses: reviewdog/action-golangci-lint@v2
1111
with:

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Fetch Repository
8-
uses: actions/checkout@v2
8+
uses: actions/checkout@v3
99
- name: Install Go
1010
uses: actions/setup-go@v3
1111
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
restore-keys: |
4040
${{ runner.os }}-go-${{ matrix.go-version }}-
4141
- name: Fetch Repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343
- name: Test PASETO Middleware
4444
run: cd ./paseto && go test ./... -v -race
4545
- name: Test Fiberzap Middleware

0 commit comments

Comments
 (0)