Skip to content

Commit 4d77ce2

Browse files
authored
feat: upgrade ci actions (#2223)
* feat: upgrade ci actions * Apply suggestion from @bojanrajh
1 parent 323e3fc commit 4d77ce2

9 files changed

Lines changed: 18 additions & 28 deletions

.github/dependabot.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/markdown-style-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Check out code
1414
uses: actions/checkout@v6
1515

16-
- uses: denoland/setup-deno@v1
16+
- uses: denoland/setup-deno@v2.0.3
1717
with:
1818
deno-version: "~1.32"
1919

.github/workflows/redirect.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ jobs:
4242
4343
- name: Add "check-redirect" label
4444
if: env.moved == 'true'
45-
uses: actions-ecosystem/action-add-labels@v1
45+
uses: actions-ecosystem/action-add-labels@v1.1.0
4646
with:
4747
github_token: ${{ secrets.GITHUB_TOKEN }}
4848
labels: check-redirect
4949

5050
- name: Add "check-deleted-file" label
5151
if: env.deleted == 'true'
52-
uses: actions-ecosystem/action-add-labels@v1
52+
uses: actions-ecosystem/action-add-labels@v1.1.0
5353
with:
5454
github_token: ${{ secrets.GITHUB_TOKEN }}
5555
labels: check-deleted-file
5656

5757
- name: Add warning comment to PR
5858
if: env.moved == 'true'
59-
uses: actions/github-script@v6
59+
uses: actions/github-script@v8.0.0
6060
with:
6161
github-token: ${{ secrets.GITHUB_TOKEN }}
6262
script: |

.github/workflows/release-note.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Slack Markdown Converter
11-
uses: LoveToKnow/slackify-markdown-action@v1.0.2
11+
uses: LoveToKnow/slackify-markdown-action@v1.1.1
1212
id: slackify
1313
with:
1414
text: ${{ github.event.release.body }}
@@ -22,4 +22,4 @@ jobs:
2222
uses: Isengo1989/notify-release-to-slack@master
2323
with:
2424
slackWebhookUrl: ${{ secrets.SLACK_NOTIFICATIONS_WEBHOOK }}
25-
releaseMessage: ${{ steps.slackify.outputs.text }}
25+
releaseMessage: ${{ steps.slackify.outputs.text }}

.github/workflows/repo-stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
cp slack.md slack_report.txt
125125
126126
- name: Upload report
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v7.0.0
128128
with:
129129
name: repo-stats-report
130130
path: |
@@ -181,7 +181,7 @@ jobs:
181181
182182
- name: Post to Slack
183183
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.post_to_slack == 'true') || (github.event_name == 'schedule')
184-
uses: slackapi/slack-github-action@v1.24.0
184+
uses: slackapi/slack-github-action@v3.0.1
185185
with:
186186
payload: ${{ steps.slack_payload.outputs.payload }}
187187
env:

.github/workflows/reviewdog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@v6
1010

11-
- uses: reviewdog/action-languagetool@v1
11+
- uses: reviewdog/action-languagetool@v1.23.0
1212
with:
1313
level: warning
1414
language: en-US

.github/workflows/update-adrs.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v6
1212

13-
- uses: denoland/setup-deno@v1
13+
- uses: denoland/setup-deno@v2.0.3
1414
with:
1515
deno-version: "~1.32"
1616

@@ -30,7 +30,7 @@ jobs:
3030

3131
- run: rm semicolon_delimited_script || echo "semicolon_delimited_script does not exist anymore"
3232

33-
- uses: peter-evans/create-pull-request@v7
33+
- uses: peter-evans/create-pull-request@v8.1.0
3434
with:
3535
add-paths: |
3636
resources/references/adr/*.md
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
ref: main
5454

55-
- uses: denoland/setup-deno@v1
55+
- uses: denoland/setup-deno@v2.0.3
5656
with:
5757
deno-version: "~1.32"
5858

@@ -70,7 +70,7 @@ jobs:
7070
options: -v ${{ github.workspace }}:/www --name docs-php
7171
run: cd /www && find ./resources/guidelines/code/core/ -name '*.md' -exec php ./.github/scripts/migrate.php {} +
7272

73-
- uses: peter-evans/create-pull-request@v7
73+
- uses: peter-evans/create-pull-request@v8.1.0
7474
with:
7575
add-paths: |
7676
resources/guidelines/code/core/*.md
@@ -91,14 +91,14 @@ jobs:
9191
with:
9292
ref: main
9393

94-
- uses: denoland/setup-deno@v1
94+
- uses: denoland/setup-deno@v2.0.3
9595
with:
9696
deno-version: "~1.32"
9797

9898
# sync from shopware/shopware
9999
- run: ./.github/scripts/update-script-references.sh
100100

101-
- uses: peter-evans/create-pull-request@v7
101+
- uses: peter-evans/create-pull-request@v8.1.0
102102
with:
103103
add-paths: |
104104
resources/references/app-reference/*.md
@@ -110,4 +110,4 @@ jobs:
110110
branch: script-references-update
111111
delete-branch: true
112112
title: 'Update script references from platform'
113-
body: 'Mirrored from: [shopware/shopware](https://github.com/shopware/shopware/tree/trunk)'
113+
body: 'Mirrored from: [shopware/shopware](https://github.com/shopware/shopware/tree/trunk)'

.github/workflows/validate-external-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- name: Create Issue From File
3232
if: steps.lychee.outputs.exit_code != 0 && steps.known-issue.outputs.has-found != 'true'
33-
uses: peter-evans/create-issue-from-file@v5
33+
uses: peter-evans/create-issue-from-file@v6.0.0
3434
with:
3535
issue-number: "${{ steps.known-issue.outputs.issue-number }}"
3636
title: Link Checker Report

.github/workflows/watcher.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Send custom JSON data to Slack workflow
1616
if: steps.watcher.outcome != 'success'
1717
id: slack
18-
uses: slackapi/slack-github-action@v1.24.0
18+
uses: slackapi/slack-github-action@v3.0.1
1919
with:
2020
payload: |
2121
{

0 commit comments

Comments
 (0)