Skip to content

Commit

Permalink
Merge pull request #68 from projectsyn/feat/template-update-checkout-…
Browse files Browse the repository at this point in the history
…action

Update `actions/checkout` to v4 in the template
  • Loading branch information
simu authored Sep 6, 2023
2 parents a65426f + 58fe19a commit a6373d7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion {{ cookiecutter.slug }}/.github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Build changelog from PRs with labels
Expand Down
8 changes: 4 additions & 4 deletions {{ cookiecutter.slug }}/.github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
- lint_yaml
- lint_adoc
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run {% raw %}${{ matrix.command }}{% endraw %}
run: make {% raw %}${{ matrix.command }}{% endraw %}
editorconfig:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: snow-actions/[email protected]
with:
args: 'check'
Expand All @@ -42,7 +42,7 @@ jobs:
run:
working-directory: {% raw %}${{ env.COMPONENT_NAME }}{% endraw %}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: {% raw %}${{ env.COMPONENT_NAME }}{% endraw %}
{%- if cookiecutter.add_go_unit == "y" %}
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
run:
working-directory: {% raw %}${{ env.COMPONENT_NAME }}{% endraw %}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: {% raw %}${{ env.COMPONENT_NAME }}{% endraw %}
- name: Golden diff
Expand Down

0 comments on commit a6373d7

Please sign in to comment.