Skip to content

Commit 8dff4bb

Browse files
committed
GitHub actions update
1 parent 18ad2c2 commit 8dff4bb

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/phpunit-coverage.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@ name: PHPUnit Test Coverage
22

33
on:
44
push:
5-
branches: [master]
6-
pull_request:
7-
branches: [master]
5+
branches: [main, master]
86

97
jobs:
108
test:
11-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1210

1311
steps:
1412
# https://github.com/marketplace/actions/checkout
@@ -45,7 +43,7 @@ jobs:
4543
4644
# https://github.com/codecov/codecov-action
4745
- name: Upload coverage to Codecov
48-
uses: codecov/codecov-action@v4
46+
uses: codecov/codecov-action@v5
4947
with:
5048
fail_ci_if_error: false
5149
files: ./coverage.xml
@@ -56,7 +54,7 @@ jobs:
5654
# second section.
5755
# https://github.com/paambaati/codeclimate-action
5856
- name: Code Climate coverage
59-
uses: paambaati/codeclimate-action@v5
57+
uses: paambaati/codeclimate-action@v9.0.0
6058
env:
6159
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
6260
with:

.github/workflows/release-from-version-tag.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ name: Create Release from Version Tags
22

33
on:
44
push:
5+
branches: [main, master]
56
tags: ["v*"]
67

78
jobs:
89
build:
9-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1011
name: Build Release
1112

1213
steps:

0 commit comments

Comments
 (0)