1 Commits

Author SHA1 Message Date
728bae9120 chore(deps): update actions/checkout action to v6
All checks were successful
Cog check / Create release (pull_request) Successful in 11s
2025-11-21 00:01:07 +00:00
11 changed files with 20 additions and 20 deletions

View File

@@ -21,7 +21,7 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx - name: Set up Docker Buildx

View File

@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0

View File

@@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0

View File

@@ -27,10 +27,10 @@ jobs:
steps: steps:
- name: Clone repo - name: Clone repo
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Retrieve artifacts - name: Retrieve artifacts
id: download id: download
uses: actions/download-artifact@v6 uses: actions/download-artifact@v3
with: with:
name: artifacts name: artifacts
- name: Check if job errored - name: Check if job errored
@@ -42,7 +42,7 @@ jobs:
exit "$(cat exitcode)"; exit "$(cat exitcode)";
fi fi
- name: Clone blackbox repo - name: Clone blackbox repo
uses: actions/checkout@v4 uses: actions/checkout@v6
if: ${{ steps.check.outputs.code == 2 }} if: ${{ steps.check.outputs.code == 2 }}
with: with:
repository: xaked/blackbox repository: xaked/blackbox

View File

@@ -31,9 +31,9 @@ jobs:
tofu_version: ${{ inputs.tofu-version }} tofu_version: ${{ inputs.tofu-version }}
cli_config_credentials_token: ${{ secrets.tf-api-token }} cli_config_credentials_token: ${{ secrets.tf-api-token }}
- name: Clone repo - name: Clone repo
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Clone blackbox repo - name: Clone blackbox repo
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
repository: xaked/blackbox repository: xaked/blackbox
path: blackbox path: blackbox
@@ -77,7 +77,7 @@ jobs:
shell: bash shell: bash
run: printf "${{ steps.tfplan.outputs.exitcode }}" > exitcode; run: printf "${{ steps.tfplan.outputs.exitcode }}" > exitcode;
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v5 uses: actions/upload-artifact@v3
with: with:
name: artifacts name: artifacts
path: | path: |

View File

@@ -13,7 +13,7 @@ jobs:
steps: steps:
- name: Clone blackbox repo - name: Clone blackbox repo
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
repository: xaked/blackbox repository: xaked/blackbox
path: blackbox path: blackbox

View File

@@ -9,7 +9,7 @@ jobs:
steps: steps:
- name: Clone repo - name: Clone repo
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Run Trivy vulnerability scanner in IaC mode (LOW/MED) - name: Run Trivy vulnerability scanner in IaC mode (LOW/MED)
uses: aquasecurity/trivy-action@master uses: aquasecurity/trivy-action@master
with: with:

View File

@@ -43,7 +43,7 @@ jobs:
steps: steps:
# Git Checkout # Git Checkout
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
token: ${{ secrets.gitea-token }} token: ${{ secrets.gitea-token }}
fetch-depth: 0 # If you use VALIDATE_ALL_CODEBASE = true, you can remove this line to improve performances fetch-depth: 0 # If you use VALIDATE_ALL_CODEBASE = true, you can remove this line to improve performances
@@ -65,7 +65,7 @@ jobs:
# Upload MegaLinter artifacts # Upload MegaLinter artifacts
- name: Archive production artifacts - name: Archive production artifacts
if: success() || failure() if: success() || failure()
uses: actions/upload-artifact@v5 uses: actions/upload-artifact@v3
with: with:
name: MegaLinter reports name: MegaLinter reports
path: | path: |

View File

@@ -22,10 +22,10 @@ jobs:
steps: steps:
- name: Clone repo - name: Clone repo
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Retrieve artifacts - name: Retrieve artifacts
id: download id: download
uses: actions/download-artifact@v6 uses: actions/download-artifact@v3
with: with:
name: artifacts name: artifacts
- name: Check if job errored - name: Check if job errored
@@ -37,7 +37,7 @@ jobs:
exit "$(cat exitcode)"; exit "$(cat exitcode)";
fi fi
- name: Clone blackbox repo - name: Clone blackbox repo
uses: actions/checkout@v4 uses: actions/checkout@v6
if: ${{ steps.check.outputs.code == 2 }} if: ${{ steps.check.outputs.code == 2 }}
with: with:
repository: xaked/blackbox repository: xaked/blackbox

View File

@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
with: with:
ref: ${{ github.event.pull_request.head.ref }} ref: ${{ github.event.pull_request.head.ref }}
- name: Install terraform docs - name: Install terraform docs

View File

@@ -26,9 +26,9 @@ jobs:
terraform_version: 1.7.5 terraform_version: 1.7.5
cli_config_credentials_token: ${{ secrets.tf-api-token }} cli_config_credentials_token: ${{ secrets.tf-api-token }}
- name: Clone repo - name: Clone repo
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Clone blackbox repo - name: Clone blackbox repo
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
repository: xaked/blackbox repository: xaked/blackbox
path: blackbox path: blackbox
@@ -72,7 +72,7 @@ jobs:
shell: bash shell: bash
run: printf "${{ steps.tfplan.outputs.exitcode }}" > exitcode; run: printf "${{ steps.tfplan.outputs.exitcode }}" > exitcode;
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v5 uses: actions/upload-artifact@v3
with: with:
name: artifacts name: artifacts
path: | path: |