File tree Expand file tree Collapse file tree 9 files changed +12
-12
lines changed Expand file tree Collapse file tree 9 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 27
27
SENTRY_DSN : ${{ secrets.SENTRY_DSN }}
28
28
steps :
29
29
- name : Checkout
30
- uses : actions/checkout@v4
30
+ uses : actions/checkout@v5
31
31
- run : docker compose -f docker-compose.yml --project-name ${{ secrets.STACK_NAME_PRODUCTION }} build
32
32
- run : docker compose -f docker-compose.yml --project-name ${{ secrets.STACK_NAME_PRODUCTION }} up -d
Original file line number Diff line number Diff line change 27
27
SENTRY_DSN : ${{ secrets.SENTRY_DSN }}
28
28
steps :
29
29
- name : Checkout
30
- uses : actions/checkout@v4
30
+ uses : actions/checkout@v5
31
31
- run : docker compose -f docker-compose.yml --project-name ${{ secrets.STACK_NAME_STAGING }} build
32
32
- run : docker compose -f docker-compose.yml --project-name ${{ secrets.STACK_NAME_STAGING }} up -d
Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
# For PRs from forks
16
- - uses : actions/checkout@v4
16
+ - uses : actions/checkout@v5
17
17
# For PRs from the same repo
18
- - uses : actions/checkout@v4
18
+ - uses : actions/checkout@v5
19
19
if : ( github.event_name != 'pull_request' || github.secret_source == 'Actions' )
20
20
with :
21
21
ref : ${{ github.head_ref }}
Original file line number Diff line number Diff line change 26
26
env :
27
27
GITHUB_CONTEXT : ${{ toJson(github) }}
28
28
run : echo "$GITHUB_CONTEXT"
29
- - uses : actions/checkout@v4
29
+ - uses : actions/checkout@v5
30
30
with :
31
31
# To allow latest-changes to commit to the main branch
32
32
token : ${{ secrets.LATEST_CHANGES }}
Original file line number Diff line number Diff line change 14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v4
17
+ uses : actions/checkout@v5
18
18
- name : Set up Python
19
19
uses : actions/setup-python@v5
20
20
with :
Original file line number Diff line number Diff line change 22
22
outputs :
23
23
changed : ${{ steps.filter.outputs.changed }}
24
24
steps :
25
- - uses : actions/checkout@v4
25
+ - uses : actions/checkout@v5
26
26
# For pull requests it's not necessary to checkout the code but for the main branch it is
27
27
- uses : dorny/paths-filter@v3
28
28
id : filter
47
47
shardTotal : [ 4 ]
48
48
fail-fast : false
49
49
steps :
50
- - uses : actions/checkout@v4
50
+ - uses : actions/checkout@v5
51
51
- uses : actions/setup-node@v4
52
52
with :
53
53
node-version : lts/*
93
93
if : ${{ !cancelled() && needs.changes.outputs.changed == 'true' }}
94
94
runs-on : ubuntu-latest
95
95
steps :
96
- - uses : actions/checkout@v4
96
+ - uses : actions/checkout@v5
97
97
- uses : actions/setup-node@v4
98
98
with :
99
99
node-version : 20
Original file line number Diff line number Diff line change 14
14
statuses : write
15
15
16
16
steps :
17
- - uses : actions/checkout@v4
17
+ - uses : actions/checkout@v5
18
18
- uses : actions/setup-python@v5
19
19
with :
20
20
python-version : " 3.10"
Original file line number Diff line number Diff line change 14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v4
17
+ uses : actions/checkout@v5
18
18
- name : Set up Python
19
19
uses : actions/setup-python@v5
20
20
with :
Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v4
18
+ uses : actions/checkout@v5
19
19
- run : docker compose build
20
20
- run : docker compose down -v --remove-orphans
21
21
- run : docker compose up -d --wait backend frontend adminer
You can’t perform that action at this time.
0 commit comments