From 566711bde21d09a47369c4c0a0b48be7de7f38d4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 Apr 2024 13:55:36 +0000 Subject: [PATCH] feat(Dependencies): Update all non-major dependencies | datasource | package | from | to | | ----------- | ------------------------------- | ------ | ------ | | github-tags | actions/checkout | v4.1.3 | v4.1.4 | | github-tags | peter-evans/create-pull-request | v6.0.4 | v6.0.5 | --- .github/workflows/blacked.yml | 2 +- .github/workflows/build_image.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/master-protection.yml | 2 +- .github/workflows/publish_docker.yml | 2 +- .github/workflows/release_image.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/blacked.yml b/.github/workflows/blacked.yml index a642f807..59f264a6 100644 --- a/.github/workflows/blacked.yml +++ b/.github/workflows/blacked.yml @@ -27,7 +27,7 @@ jobs: - name: Create Pull Request if: steps.git-check.outputs.modified == 'true' id: cpr - uses: peter-evans/create-pull-request@v6.0.4 + uses: peter-evans/create-pull-request@v6.0.5 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: fix(Linting):blacked code diff --git a/.github/workflows/build_image.yml b/.github/workflows/build_image.yml index 570382d8..99495467 100644 --- a/.github/workflows/build_image.yml +++ b/.github/workflows/build_image.yml @@ -8,5 +8,5 @@ jobs: uses: rokroskar/workflow-run-cleanup-action@v0.3.3 env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - run: docker build --no-cache . diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index bed6b7d7..5165c73c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4.1.3 + uses: actions/checkout@v4.1.4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/master-protection.yml b/.github/workflows/master-protection.yml index cb2d8ab6..60d1c8df 100644 --- a/.github/workflows/master-protection.yml +++ b/.github/workflows/master-protection.yml @@ -14,7 +14,7 @@ jobs: uses: rokroskar/workflow-run-cleanup-action@v0.3.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - name: Check Tag run: | diff --git a/.github/workflows/publish_docker.yml b/.github/workflows/publish_docker.yml index 820c2bce..95caf894 100644 --- a/.github/workflows/publish_docker.yml +++ b/.github/workflows/publish_docker.yml @@ -15,7 +15,7 @@ jobs: uses: rokroskar/workflow-run-cleanup-action@v0.3.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - name: Extract branch name shell: bash run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" diff --git a/.github/workflows/release_image.yml b/.github/workflows/release_image.yml index 3ad457a3..972f03f2 100644 --- a/.github/workflows/release_image.yml +++ b/.github/workflows/release_image.yml @@ -11,7 +11,7 @@ jobs: - name: Get the version id: get_version run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to Quay.io