Skip to content

Commit 588ff5b

Browse files
authored
Resolve CI issues and bump actions/checkout from v3->v4 (#1770)
* Resolve CI issues and bump actions/checkout from v3->v4 Signed-off-by: Jeff Hodges <[email protected]> * Use pull_request_target not pull_request for labelling PR's automagically Signed-off-by: Jeff Hodges <[email protected]> --------- Signed-off-by: Jeff Hodges <[email protected]>
1 parent 9195176 commit 588ff5b

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ tag-template: 'v$RESOLVED_VERSION'
4141
# - 'docs'
4242
# - 'style'
4343

44-
# automatically a label into a pull request
44+
# automatically label pull requests
4545
# https://github.com/release-drafter/release-drafter#autolabeler
4646
autolabeler:
4747
- label: 'feat'

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
check-links:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
submodules: 'recursive'
1616

.github/workflows/pr-tools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Pull Request Tools
22

33
on:
44
workflow_dispatch:
5-
pull_request:
5+
pull_request_target:
66
types: [
77
opened, # pr is created
88
reopened, # pr is reopened after being closed
@@ -24,7 +24,7 @@ jobs:
2424
pull-requests: write
2525
steps:
2626
- name: Checkout Repo
27-
uses: actions/checkout@v3 # https://github.com/actions/checkout/tree/main#usage
27+
uses: actions/checkout@v4 # https://github.com/actions/checkout/tree/main#usage
2828

2929
# https://github.com/actions/labeler#usage
3030
- uses: actions/labeler@v4

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
OTIO_CONSUMER_TEST_BUILD_DIR: ${{ github.workspace }}/consumertest
4545

4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
with:
4949
submodules: 'recursive'
5050
- name: Install coverage dependency
@@ -116,7 +116,7 @@ jobs:
116116
OTIO_CXX_BUILD_TMP_DIR: ${{ github.workspace }}/build
117117

118118
steps:
119-
- uses: actions/checkout@v3
119+
- uses: actions/checkout@v4
120120
with:
121121
submodules: 'recursive'
122122
- name: Set up MSYS2
@@ -180,7 +180,7 @@ jobs:
180180
exclude:
181181
- { os: macos-14, python-build: 'cp37*' }
182182
steps:
183-
- uses: actions/checkout@v3
183+
- uses: actions/checkout@v4
184184

185185
- name: Build wheels (Python 3)
186186
uses: pypa/[email protected]
@@ -201,7 +201,7 @@ jobs:
201201
needs: py_build_test
202202
runs-on: ubuntu-22.04
203203
steps:
204-
- uses: actions/checkout@v3
204+
- uses: actions/checkout@v4
205205
with:
206206
submodules: 'recursive'
207207

.github/workflows/release-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
outputs:
2929
branch-name: ${{ steps.get-branch-name.outputs.branch-name }}
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232

3333
- name: Create Branch
3434
shell: bash
3535
run: |
36-
sh ./github/scripts/release-branch.sh
36+
sh .github/scripts/release-branch.sh
3737
3838
- name: Get New Branch Name
3939
id: get-branch-name

.github/workflows/release-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 5
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
announce-release:
2323
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)