Skip to content

Commit 12f7cb8

Browse files
chore: fix basic-tests github action (#38)
- Correctly referencing token - Updating deprecated macos runner
1 parent 5f3ecab commit 12f7cb8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/basic-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
setup:
1111
uses: ./.github/workflows/reusable_setup.yml
1212
secrets:
13-
CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
13+
THE_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
1414

1515
lint-test:
1616
needs: 'setup'
1717
uses: ./.github/workflows/reusable_lint.yml
1818
secrets:
19-
CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
19+
THE_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
2020

2121
build-packages:
2222
needs: 'setup'
2323
uses: ./.github/workflows/reusable_build.yml
2424
secrets:
25-
CAP_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
25+
THE_GH_RELEASE_TOKEN: ${{ secrets.CAP_GH_RELEASE_TOKEN }}

.github/workflows/reusable_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
lint:
11-
runs-on: 'macos-12'
11+
runs-on: 'macos-14'
1212
timeout-minutes: 30
1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/reusable_setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
setup:
1111
strategy:
1212
matrix:
13-
os: ['ubuntu-22.04', 'macos-12']
13+
os: ['ubuntu-22.04', 'macos-14']
1414
runs-on: ${{ matrix.os }}
1515
timeout-minutes: 30
1616
steps:

0 commit comments

Comments
 (0)