File tree 1 file changed +2
-12
lines changed
1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,10 @@ concurrency:
17
17
permissions :
18
18
issues : write
19
19
20
- env :
21
- HOMEBREW_SIMULATE_MACOS_ON_LINUX : 1
22
-
23
20
jobs :
24
21
create_matrix :
25
22
if : startsWith( github.repository, 'Homebrew/' )
26
- runs-on : ubuntu-22.04
27
- container :
28
- image : ghcr.io/homebrew/ubuntu22.04:master
23
+ runs-on : macos-latest
29
24
outputs :
30
25
json : ${{ steps.matrix.outputs.json }}
31
26
env :
54
49
audit_online :
55
50
if : startsWith( github.repository, 'Homebrew/' )
56
51
runs-on : ${{ matrix.os }}
57
- container :
58
- image : ghcr.io/homebrew/ubuntu22.04:master
59
52
needs : create_matrix
60
53
name : " Online check (${{ matrix.os }}): ${{ matrix.cask }}"
61
54
env :
66
59
fail-fast : false
67
60
matrix :
68
61
cask : ${{ fromJson(needs.create_matrix.outputs.json) }}
69
- os : [ubuntu-22.04 ]
62
+ os : [macos-latest ]
70
63
steps :
71
64
- name : Set up Homebrew
72
65
id : set-up-homebrew
78
71
79
72
- name : Check cask source is not archived.
80
73
id : archived
81
- if : matrix.os != 'macos-latest'
82
74
run : brew audit --cask --online --skip-style --only github_repository_archived,gitlab_repository_archived ${{ matrix.cask }}
83
75
84
76
- name : Report online issues
90
82
91
83
- name : Check cask for unavailable homepage.
92
84
id : homepage
93
- if : matrix.os != 'macos-latest'
94
85
run : brew audit --cask --online --skip-style --only homepage ${{ matrix.cask }}
95
86
96
87
- name : Report homepage issues
102
93
103
94
- name : Check cask for missing sources.
104
95
id : fetch
105
- if : matrix.os != 'macos-latest'
106
96
run : brew fetch --cask -s ${{ matrix.cask }}
107
97
108
98
- name : Report fetch issues
You can’t perform that action at this time.
0 commit comments