Skip to content

Commit

Permalink
github workflow: Upgrade actions/checkout@v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
bogenlos committed Feb 15, 2024
1 parent a76a387 commit 6c08282
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Build release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.ref }}
token: ${{ secrets.CI_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_wasp_cli_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/finish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
tagName=${branchName##*/}
echo "value=$tagName" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_TOKEN }}

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.ref_type == 'branch' && contains(github.event.ref, 'feature/') }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
echo "value=main" >> $GITHUB_OUTPUT
fi
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ steps.get_base_branch.outputs.value }}
token: ${{ secrets.CI_TOKEN }}
Expand Down

0 comments on commit 6c08282

Please sign in to comment.