Skip to content

Commit

Permalink
feat: update to actions/checkout v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jordiroig-tf committed Feb 23, 2024
1 parent c7f0498 commit b6e1b80
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-standard-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Out Source Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: CI Standard Checks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update major version tag
run: |
git config --global user.email "[email protected]"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-and-release-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
run: |
npm config set '//npm.pkg.github.com/:_authToken' ${{ secrets.GITHUB_TOKEN }}
npm config set @typeform:registry https://npm.pkg.github.com/
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
yarn install
- run: |
yarn run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Test all checks
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Semantic Release
id: semantic
uses: codfish/semantic-release-action@4e9fa8ec064813465dfeccac8ae70f1348fb5dec
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-transpiled-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
yarn install
mv dist/ source-dist
Expand Down

0 comments on commit b6e1b80

Please sign in to comment.