Skip to content

Commit

Permalink
deps: update actions/checkout (#72)
Browse files Browse the repository at this point in the history
* deps: update actions/checkout

* chore: update changelog
  • Loading branch information
vaind authored Mar 5, 2024
1 parent 2be9de7 commit d89a1b4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/danger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
description: 'Internal: specify github-workflows (this repo) revision to use when checking out scripts.'
type: string
required: false
default: v2 # Note: update when publishing a new version
default: v2 # Note: update when publishing a new version
outputs:
outcome:
description: Whether the Danger run finished successfully. Possible values are success, failure, cancelled, or skipped.
Expand All @@ -18,7 +18,7 @@ jobs:
outputs:
outcome: ${{ steps.danger.outcome }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/script-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- run: git config --global core.autocrlf false

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install make
if: ${{ matrix.host == 'macos' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
run:
shell: pwsh
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.api-token }}

Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
# If we didn't do this, the new PR would only have a changelog...
- name: 'After new PR: restore repo'
if: ${{ ( steps.target.outputs.latestTag != steps.target.outputs.originalTag ) && ( steps.existing-pr.outputs.url == '') && ( steps.root.outputs.changed == 'false') }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.api-token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- macos
- windows
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./sentry-cli/integration-test/
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Bump updater action dependency to fix an issue when creating/updating a PR ([#71](https://github.com/getsentry/github-workflows/pull/71))

### Dependencies

- Bump `actions/checkout` from v3 to v4 ([#72](https://github.com/getsentry/github-workflows/pull/72))

## 2.9.1

### Fixes
Expand Down

0 comments on commit d89a1b4

Please sign in to comment.