Skip to content

Commit 023f7aa

Browse files
authored
ci: Update actions to get rid of deprecated...
...node.js runner versions: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ It might also be relevant for the deprecation of the `set-output` command: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ which we also don't invoke directly but via our actions.
1 parent fbab203 commit 023f7aa

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
name: Lint
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- run: make style
1717

1818
build-ios:
1919
name: Xcode Build for iOS
2020
runs-on: macos-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
with:
2424
submodules: "recursive"
2525
- run: |
@@ -107,10 +107,10 @@ jobs:
107107
SYSTEM_VERSION_COMPAT: ${{ matrix.SYSTEM_VERSION_COMPAT }}
108108

109109
steps:
110-
- uses: actions/checkout@v2
110+
- uses: actions/checkout@v3
111111
with:
112112
submodules: recursive
113-
- uses: actions/setup-python@v2
113+
- uses: actions/setup-python@v4
114114

115115
- name: Installing Linux Dependencies
116116
if: ${{ runner.os == 'Linux' && !env['TEST_X86'] }}
@@ -157,7 +157,7 @@ jobs:
157157
158158
- name: "Upload to codecov.io"
159159
if: ${{ contains(env['RUN_ANALYZER'], 'cov') }}
160-
uses: codecov/codecov-action@v1
160+
uses: codecov/codecov-action@v3
161161
with:
162162
directory: coverage
163163

@@ -169,7 +169,7 @@ jobs:
169169
# run on master or the release branch
170170
if: ${{ needs.test.result == 'success' && github.event_name == 'push' }}
171171
steps:
172-
- uses: actions/checkout@v2
172+
- uses: actions/checkout@v3
173173
with:
174174
submodules: recursive
175175

@@ -179,7 +179,7 @@ jobs:
179179
zip -r sentry-native.zip .
180180
181181
- name: Upload source artifact
182-
uses: actions/upload-artifact@v2
182+
uses: actions/upload-artifact@v3
183183
with:
184184
name: ${{ github.sha }}
185185
# When downloading artifacts, they are double-zipped:

0 commit comments

Comments
 (0)