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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: '0'
- name: Build changelog from PRs with labels
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: reviewdog/action-yamllint@v1
with:
github_token: ${{ secrets.github_token }}
Expand All @@ -17,14 +17,14 @@ jobs:
jsonnetfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: |
make -C gitlab jsonnetfmt_check

shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: reviewdog/action-shellcheck@v1
with:
reporter: github-pr-review
Expand All @@ -38,7 +38,7 @@ jobs:
outputs:
instances: ${{ steps.instances.outputs.instances }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Find test cases
id: instances
run: |
Expand All @@ -52,6 +52,6 @@ jobs:
runs-on: ubuntu-latest
name: 'Golden test: ${{ matrix.instance }}'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: |
make -C gitlab golden-diff -e instance=${{ matrix.instance }}