Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows.cue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

#checkoutCode: {
name: string | *"Checkout code"
uses: "actions/checkout@v5"
uses: "actions/checkout@v6"
with: {
[string]: string | number | bool
token: "${{ secrets.PAT }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }}
ref: ${{ github.head_ref || github.ref_name }}
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
docker build . -t ${{ steps.kind.outputs.LOCAL_REGISTRY }}/navecd:0.0.0-dev
docker push ${{ steps.kind.outputs.LOCAL_REGISTRY }}/navecd:0.0.0-dev
- name: Checkout E2E Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }}
repository: kharf/navecd-e2e
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-conformance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }}
ref: ${{ github.head_ref || github.ref_name }}
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }}
ref: ${{ github.head_ref || github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }}
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }}
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT }}
- name: Update
Expand Down
Loading