Skip to content

Commit daa2785

Browse files
build: bump the all-actions group with 6 updates (#1889)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2d08bc2 commit daa2785

11 files changed

Lines changed: 17 additions & 17 deletions

.github/workflows/bicep-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
security-events: write
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Run Microsoft Security DevOps Analysis
2525
uses: microsoft/security-devops-action@preview

.github/workflows/broken-links-checker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222

@@ -31,7 +31,7 @@ jobs:
3131
echo "EOF" >> $GITHUB_OUTPUT
3232
- name: Check Broken Links in Added/Modified Files (PR)
3333
if: github.event_name == 'pull_request' && steps.changed-files.outputs.md_files != ''
34-
uses: lycheeverse/lychee-action@v2.4.1
34+
uses: lycheeverse/lychee-action@v2.6.1
3535
with:
3636
args: >
3737
--verbose --exclude-mail --no-progress --exclude ^https?://
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Check Broken Links in Entire Repo (Manual)
4444
if: github.event_name == 'workflow_dispatch'
45-
uses: lycheeverse/lychee-action@v2.4.1
45+
uses: lycheeverse/lychee-action@v2.6.1
4646
with:
4747
args: >
4848
--verbose --exclude-mail --no-progress --exclude ^https?://

.github/workflows/build-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939

4040
# Login for 'main' branch to both registries
4141
- name: Docker Login to fruoccopublic (Main)

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
- name: Run Quota Check
4040
id: quota-check
@@ -344,7 +344,7 @@ jobs:
344344

345345
steps:
346346
- name: Checkout code
347-
uses: actions/checkout@v4
347+
uses: actions/checkout@v5
348348

349349
- name: Destroy resources
350350
uses: devcontainers/ci@v0.3

.github/workflows/comment_coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
github.event.workflow_run.conclusion != 'cancelled'
1919
steps:
2020
- name: Download artifact
21-
uses: actions/download-artifact@v4
21+
uses: actions/download-artifact@v5
2222
with:
2323
name: coverage
2424
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -39,7 +39,7 @@ jobs:
3939
return response.data[0]?.number ?? "";
4040
retries: 3
4141
- name: Comment coverage
42-
uses: MishaKav/pytest-coverage-comment@13d3c18e21895566c746187c9ea74736372e5e91
42+
uses: MishaKav/pytest-coverage-comment@1bdbba85fb74a2fdc1ec66383acec1091610f82b
4343
with:
4444
pytest-xml-coverage-path: coverage.xml
4545
junitxml-path: coverage-junit.xml

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
ref: ${{ github.event.workflow_run.head_sha }}
2323

24-
- uses: codfish/semantic-release-action@v3
24+
- uses: codfish/semantic-release-action@v4
2525
id: semantic
2626
with:
2727
tag-format: 'v${version}'

.github/workflows/pr-title-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: ${{ github.event_name != 'merge_group' }}
1919
steps:
20-
- uses: amannn/action-semantic-pull-request@v5
20+
- uses: amannn/action-semantic-pull-request@v6
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/scheduled-Dependabot-PRs-Auto-Merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
- name: Install GitHub CLI
4242
run: |

.github/workflows/stale-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
fetch-depth: 0 # Fetch full history for accurate branch checks
3030
- name: Fetch All Branches

.github/workflows/test-automation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Set up Python
2626
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)