Skip to content

Commit

Permalink
actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
rez1dent3 committed Mar 23, 2024
1 parent 6e7fad5 commit 28c517e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
uses: actions/checkout@v4
with:
submodules: 'true'
token: ${{ secrets.PAT_TOKEN }}
-
name: Docker meta
id: meta
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ jobs:
name: Run example
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
-
name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Run Simple Example
uses: ./
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ jobs:
matrix:
go-version: [ '1.22' ]
steps:
- uses: actions/checkout@v4
-
name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
token: ${{ secrets.PAT_TOKEN }}
- name: Setup Go
uses: actions/setup-go@v5
with:
Expand Down

0 comments on commit 28c517e

Please sign in to comment.