Skip to content

Commit

Permalink
Update workflows to use actions/checkout@v4 (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
samcoe committed Oct 5, 2023
1 parent f16af7c commit a8deb2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
go-version: "1.21"

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
go-version: ${{ matrix.go }}

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run tests
run: go test -v ./...

0 comments on commit a8deb2f

Please sign in to comment.