diff --git a/.gitea/workflows/build-push-docker.yml b/.gitea/workflows/build-push-docker.yml index caecaf8..2c06970 100644 --- a/.gitea/workflows/build-push-docker.yml +++ b/.gitea/workflows/build-push-docker.yml @@ -43,7 +43,7 @@ jobs: REPO: ${{ gitea.repository }} - name: Check out repository - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 ref: ${{ inputs.release }} diff --git a/.gitea/workflows/changelog.yaml b/.gitea/workflows/changelog.yaml index 82d970c..9e17235 100644 --- a/.gitea/workflows/changelog.yaml +++ b/.gitea/workflows/changelog.yaml @@ -19,7 +19,7 @@ jobs: clean_changelog: ${{ steps.get_next_version.outputs.clean_changelog }} steps: - name: Check out repository - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-docker.yml b/.gitea/workflows/ci-docker.yml index db71476..20ada18 100644 --- a/.gitea/workflows/ci-docker.yml +++ b/.gitea/workflows/ci-docker.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python-poetry-with-docker.yml b/.gitea/workflows/ci-python-poetry-with-docker.yml index 79be7cf..3521b2d 100644 --- a/.gitea/workflows/ci-python-poetry-with-docker.yml +++ b/.gitea/workflows/ci-python-poetry-with-docker.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python-poetry.yml b/.gitea/workflows/ci-python-poetry.yml index 2617e9a..8fca169 100644 --- a/.gitea/workflows/ci-python-poetry.yml +++ b/.gitea/workflows/ci-python-poetry.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python-uv-with-docker.yml b/.gitea/workflows/ci-python-uv-with-docker.yml index d9b7dbd..9f2e4b5 100644 --- a/.gitea/workflows/ci-python-uv-with-docker.yml +++ b/.gitea/workflows/ci-python-uv-with-docker.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python-with-docker.yml b/.gitea/workflows/ci-python-with-docker.yml index 4ebe1ff..6d912aa 100644 --- a/.gitea/workflows/ci-python-with-docker.yml +++ b/.gitea/workflows/ci-python-with-docker.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/ci-python.yml b/.gitea/workflows/ci-python.yml index 7335c17..cc82ef7 100644 --- a/.gitea/workflows/ci-python.yml +++ b/.gitea/workflows/ci-python.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/create-release.yml b/.gitea/workflows/create-release.yml index ca08dd4..1776487 100644 --- a/.gitea/workflows/create-release.yml +++ b/.gitea/workflows/create-release.yml @@ -19,7 +19,7 @@ jobs: clean_changelog: ${{ steps.get_next_version.outputs.clean_changelog }} steps: - name: Check out repository - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 @@ -72,7 +72,7 @@ jobs: needs: get_next_release steps: - name: Check out repository - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.gitea/workflows/docker-compose-deploy.yml b/.gitea/workflows/docker-compose-deploy.yml index 929612b..eca12da 100644 --- a/.gitea/workflows/docker-compose-deploy.yml +++ b/.gitea/workflows/docker-compose-deploy.yml @@ -35,7 +35,7 @@ jobs: url_title: 'View Logs' - name: "[ON RUNNER] Checkout the repo" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "[ON RUNNER] Set project variables" run: | diff --git a/.gitea/workflows/release-with-tag.yaml b/.gitea/workflows/release-with-tag.yaml index 0dff4e3..6dba551 100644 --- a/.gitea/workflows/release-with-tag.yaml +++ b/.gitea/workflows/release-with-tag.yaml @@ -19,7 +19,7 @@ jobs: clean_changelog: ${{ steps.get_next_version.outputs.clean_changelog }} steps: - name: Check out repository - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 diff --git a/.github/workflows/build-push-attest-docker.yml b/.github/workflows/build-push-attest-docker.yml index c58767a..36efb1c 100644 --- a/.github/workflows/build-push-attest-docker.yml +++ b/.github/workflows/build-push-attest-docker.yml @@ -24,7 +24,7 @@ jobs: success: ${{ steps.set_flag.outputs.success }} steps: - name: Check out the repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.release }} diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml index 3bf72c1..ab03e3d 100644 --- a/.github/workflows/ci-docker.yml +++ b/.github/workflows/ci-docker.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 - uses: hadolint/hadolint-action@v3.1.0 diff --git a/.github/workflows/ci-python-poetry-with-docker.yml b/.github/workflows/ci-python-poetry-with-docker.yml index a4a6961..12ae5a9 100644 --- a/.github/workflows/ci-python-poetry-with-docker.yml +++ b/.github/workflows/ci-python-poetry-with-docker.yml @@ -22,7 +22,7 @@ jobs: PYTHON_VERSION=${{ inputs.python-version }} echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 - uses: hadolint/hadolint-action@v3.1.0 diff --git a/.github/workflows/ci-python-poetry.yml b/.github/workflows/ci-python-poetry.yml index a59ebba..13720f0 100644 --- a/.github/workflows/ci-python-poetry.yml +++ b/.github/workflows/ci-python-poetry.yml @@ -22,7 +22,7 @@ jobs: PYTHON_VERSION=${{ inputs.python-version }} echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 - name: Setup Python diff --git a/.github/workflows/ci-python-with-docker.yml b/.github/workflows/ci-python-with-docker.yml index eb122e1..e1c5013 100644 --- a/.github/workflows/ci-python-with-docker.yml +++ b/.github/workflows/ci-python-with-docker.yml @@ -22,7 +22,7 @@ jobs: PYTHON_VERSION=${{ inputs.python-version }} echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 - uses: hadolint/hadolint-action@v3.1.0 diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 30831d3..e2ba9bb 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -22,7 +22,7 @@ jobs: PYTHON_VERSION=${{ inputs.python-version }} echo "value=${PYTHON_VERSION:-"3.11"}" >> $GITHUB_OUTPUT - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 - name: Setup Python diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 0fc653d..a7596c8 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -17,7 +17,7 @@ jobs: release_name: ${{ steps.tag_version.outputs.new_tag }} success: ${{ steps.set_flag.outputs.success }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0