Skip to content

Commit

Permalink
Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 28, 2024
1 parent a22f0a1 commit 80b183a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix: ${{ steps.templates.outputs.matrix }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: List templates
id: templates
run: echo "matrix=$(ls templates/*.pkr.hcl | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
Expand All @@ -25,7 +25,7 @@ jobs:
template: ${{ fromJson(needs.list.outputs.matrix) }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup os
run: sudo apt-get install qemu-user-static -y
- name: Setup env
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix: ${{ steps.templates.outputs.matrix }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: List templates
id: templates
run: echo "matrix=$(ls templates/*.pkr.hcl | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
Expand All @@ -26,7 +26,7 @@ jobs:
template: ${{ fromJson(needs.list.outputs.matrix) }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup os
run: sudo apt-get install qemu-user-static -y
- name: Setup env
Expand Down

0 comments on commit 80b183a

Please sign in to comment.