forked from cypress-io/github-action
-
Notifications
You must be signed in to change notification settings - Fork 2
156 lines (135 loc) · 4.72 KB
/
action-versions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
name: action-versions
# Test current and previous versions (branches)
# Changes to GitHub may affect the success of this action
## Test v9 versions using branch test/v5-action-versions, since examples/v9
# is no longer in prime or master branch
## cypress-io/github-action@v1
# This version is incompatible with current GitHub security:
# Error: The `set-env` command is disabled. Please upgrade to using Environment Files or opt into unsecure command execution by setting the `ACTIONS_ALLOW_UNSECURE_COMMANDS` environment variable to `true`. For more information see: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
## cypress-io/github-action@v2
# Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
# Deadline May 31, 2023
## cypress-io/github-action@v3
# Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
# Deadline May 31, 2023
## cypress-io/[email protected]
# Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
## cypress-io/[email protected]
# No current warnings or deprecations
## cypress-io/github-action@v4
# No current warnings or deprecations
## cypress-io/github-action@v5
# No current warnings or deprecations
## cypress-io/github-action@v6
# No current warnings or deprecations
## cypress-io/github-action@master
# No current warnings or deprecations
on:
workflow_dispatch:
jobs:
# action-v1:
# if: always()
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Cypress tests
# uses: cypress-io/[email protected]
# env:
# ACTIONS_ALLOW_UNSECURE_COMMANDS: true
# with:
# working-directory: examples/v9/basic
# action-v2:
# if: always()
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Cypress tests
# uses: cypress-io/github-action@v2
# with:
# working-directory: examples/v9/basic
# action-v3:
# if: always()
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Cypress tests
# uses: cypress-io/github-action@v3
# with:
# working-directory: examples/v9/basic
action-v4-2-1:
if: always()
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cypress tests
# Supports Cypress v10 and later
uses: cypress-io/[email protected]
with:
working-directory: examples/basic
action-v4-2-2:
if: always()
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cypress tests
# Supports Cypress v10 and later
uses: cypress-io/[email protected]
with:
working-directory: examples/basic
action-v4:
if: always()
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cypress tests
# Supports Cypress v10 and later
uses: cypress-io/github-action@v4
with:
working-directory: examples/basic
action-v5:
if: always()
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cypress tests
uses: cypress-io/github-action@v5
with:
working-directory: examples/basic
action-v6:
if: always()
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cypress tests
uses: cypress-io/github-action@v6
with:
working-directory: examples/basic
action-master:
if: always()
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cypress tests
uses: cypress-io/github-action@master
with:
working-directory: examples/basic
# action-no-version:
# if: always()
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Cypress tests
# # This is illegal syntax
# uses: cypress-io/github-action
# with:
# working-directory: examples/basic