Skip to content

Commit d89a1b4

Browse files
authored
deps: update actions/checkout (#72)
* deps: update actions/checkout * chore: update changelog
1 parent 2be9de7 commit d89a1b4

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.github/workflows/danger.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
description: 'Internal: specify github-workflows (this repo) revision to use when checking out scripts.'
77
type: string
88
required: false
9-
default: v2 # Note: update when publishing a new version
9+
default: v2 # Note: update when publishing a new version
1010
outputs:
1111
outcome:
1212
description: Whether the Danger run finished successfully. Possible values are success, failure, cancelled, or skipped.
@@ -18,7 +18,7 @@ jobs:
1818
outputs:
1919
outcome: ${{ steps.danger.outcome }}
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
2424

.github/workflows/script-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- run: git config --global core.autocrlf false
2020

21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
- name: Install make
2424
if: ${{ matrix.host == 'macos' }}

.github/workflows/updater.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run:
104104
shell: pwsh
105105
steps:
106-
- uses: actions/checkout@v3
106+
- uses: actions/checkout@v4
107107
with:
108108
ssh-key: ${{ secrets.api-token }}
109109

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

.github/workflows/workflow-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- macos
5656
- windows
5757
steps:
58-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5959

6060
- uses: ./sentry-cli/integration-test/
6161
with:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

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

9+
### Dependencies
10+
11+
- Bump `actions/checkout` from v3 to v4 ([#72](https://github.com/getsentry/github-workflows/pull/72))
12+
913
## 2.9.1
1014

1115
### Fixes

0 commit comments

Comments
 (0)