Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and abose committed Oct 24, 2023
1 parent 52cd01d commit 7f6c6df
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tauri-build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
release_id: ${{ steps.create-release.outputs.result }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: get Git Tag
shell: bash
run: echo "GIT_TAG_NAME=dev-app-v$(node -p "require('./package.json').version")" >> $GITHUB_ENV
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
needs: [ create-release, build-tauri ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: get Git Tag
run: echo "GIT_TAG_NAME=dev-app-v$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: publish release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tauri-build-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
release_id: ${{ steps.create-release.outputs.result }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: get Git Tag
shell: bash
run: echo "GIT_TAG_NAME=prod-app-v$(node -p "require('./package.json').version")" >> $GITHUB_ENV
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
needs: [ create-release, build-tauri ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: get Git Tag
run: echo "GIT_TAG_NAME=prod-app-v$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: publish release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tauri-build-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
release_id: ${{ steps.create-release.outputs.result }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: get Git Tag
shell: bash
run: echo "GIT_TAG_NAME=staging-app-v$(node -p "require('./package.json').version")" >> $GITHUB_ENV
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
needs: [ create-release, build-tauri ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: get Git Tag
run: echo "GIT_TAG_NAME=staging-app-v$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: publish release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-phcode-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build-tasks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Event triggered by
run: |
echo source: ${{github.event.client_payload.source}}, workflow: ${{github.event.client_payload.workflow}}, action_run_id: ${{github.event.client_payload.run_id}}, action_run_number: ${{github.event.client_payload.run_number}}, sha: ${{ github.event.client_payload.sha }}, github_ref: ${{ github.event.client_payload.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updateNotification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
echo '${{ toJSON(github) }}'
echo "$GITHUB_REF repo=${{github.event.repository.full_name}}"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main
- uses: actions/github-script@v6
Expand Down

0 comments on commit 7f6c6df

Please sign in to comment.