Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:
shell: bash

- name: Restore APT cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: restore_apt_cache
with:
path: /var/cache/apt/archives/*.deb
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/apt_requirements/save_apt_cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
with:
file_paths: ${{ inputs.apt_requirements_file_path }}
- name: Save APT cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /var/cache/apt/archives/*.deb
key: ${{ inputs.git_reference }}-apt-${{ steps.compute_apt_requirements_file_sha256_hash.outputs.computed_hash }}
2 changes: 1 addition & 1 deletion .github/actions/push_on_ecr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
using: "composite"
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
aws-region: ${{ inputs.aws_region}}
aws-access-key-id: ${{ inputs.aws_access_key }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
shell: bash
- name: Restore pip cache
id: restore_pip_cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
key: ${{ steps.generate_random_uuid.outputs.computed_uuid }}
path: ${{ steps.get_pip_cache_directory.outputs.pip_cache_path }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:

- name: Restore virtual environment
id: restore_virtual_environment
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ inputs.virtual_environment_path }}
key: ${{ inputs.git_reference }}-venv-${{ steps.compute_requirements_files_sha256_hash.outputs.computed_hash }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
echo "::debug::The pip cache path is $pip_cache_path"
shell: bash
- name: Save pip cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ steps.get_pip_cache_directory.outputs.pip_cache_path }}
key: ${{ inputs.git_reference }}-pip-cache-${{ steps.generate_random_uuid.outputs.computed_uuid }}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
file_paths: ${{ inputs.requirements_paths }}

- name: Cache virtual environment
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ inputs.virtual_environment_path }}
key: ${{ inputs.git_reference }}-venv-${{ steps.compute_requirements_files_sha256_hash.outputs.computed_hash }}
4 changes: 2 additions & 2 deletions .github/workflows/_detect_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ jobs:

steps:
- name: Check out PR target branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.base_ref }}

- name: Check out source branch latest commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
clean: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ jobs:
language: ['javascript']
steps:
- name: Check out latest commit for current branch
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node_version }}
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_opentofu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
permissions: write-all
steps:
- name: Check out latest commit
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: tofu fmt ${{ matrix.directory }}
uses: dflook/tofu-fmt-check@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,10 @@ jobs:
env: ${{ fromJson(inputs.env) }}
steps:
- name: Check out latest commit
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python_version }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/_release_and_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
outputs:
match: ${{ steps.check-tag.outputs.match }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

Expand All @@ -101,12 +101,12 @@ jobs:
append_body: true

- name: Checkout created tag
uses: actions/checkout@v4
uses: actions/checkout@v5
if: steps.check-tag.outputs.match == 'true' && ( inputs.publish_on_test_pypi || inputs.publish_on_pypi)
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
if: steps.check-tag.outputs.match == 'true' && (inputs.publish_on_pypi || inputs.publish_on_test_pypi || inputs.append_to_release)
with:
python-version: "3.x"
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
if: steps.check-tag.outputs.match == 'true' && inputs.publish_on_npm
with:
node-version: 20
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
matrix:
docker_mapping: ${{ fromJson(inputs.docker_mapping) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
matrix:
docker_mapping: ${{ fromJson(inputs.docker_mapping) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_apt_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out latest commit on current branch
uses: actions/checkout@v4
uses: actions/checkout@v5

# Remember to set the same APT requirements file path set before!
- name: Install APT dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create_python_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out latest commit
uses: actions/checkout@v4
uses: actions/checkout@v5

# Uncomment only if necessary
#- name: Install system dependencies required by Python packages
# run: |
# sudo apt-get update && sudo apt install <package1> <package2>...

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.12"

Expand Down
2 changes: 1 addition & 1 deletion actions/apt_requirements/restore_apt_cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:
shell: bash

- name: Restore APT cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: restore_apt_cache
with:
path: /var/cache/apt/archives/*.deb
Expand Down
2 changes: 1 addition & 1 deletion actions/apt_requirements/save_apt_cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
with:
file_paths: ${{ inputs.apt_requirements_file_path }}
- name: Save APT cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /var/cache/apt/archives/*.deb
key: ${{ inputs.git_reference }}-apt-${{ steps.compute_apt_requirements_file_sha256_hash.outputs.computed_hash }}
2 changes: 1 addition & 1 deletion actions/push_on_ecr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
using: "composite"
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
aws-region: ${{ inputs.aws_region}}
aws-access-key-id: ${{ inputs.aws_access_key }}
Expand Down
2 changes: 1 addition & 1 deletion actions/python_requirements/restore_pip_cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
shell: bash
- name: Restore pip cache
id: restore_pip_cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
key: ${{ steps.generate_random_uuid.outputs.computed_uuid }}
path: ${{ steps.get_pip_cache_directory.outputs.pip_cache_path }}
Expand Down
2 changes: 1 addition & 1 deletion actions/python_requirements/restore_virtualenv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:

- name: Restore virtual environment
id: restore_virtual_environment
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ inputs.virtual_environment_path }}
key: ${{ inputs.git_reference }}-venv-${{ steps.compute_requirements_files_sha256_hash.outputs.computed_hash }}
Expand Down
2 changes: 1 addition & 1 deletion actions/python_requirements/save_pip_cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
echo "::debug::The pip cache path is $pip_cache_path"
shell: bash
- name: Save pip cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ steps.get_pip_cache_directory.outputs.pip_cache_path }}
key: ${{ inputs.git_reference }}-pip-cache-${{ steps.generate_random_uuid.outputs.computed_uuid }}
2 changes: 1 addition & 1 deletion actions/python_requirements/save_virtualenv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
file_paths: ${{ inputs.requirements_paths }}

- name: Cache virtual environment
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ inputs.virtual_environment_path }}
key: ${{ inputs.git_reference }}-venv-${{ steps.compute_requirements_files_sha256_hash.outputs.computed_hash }}
4 changes: 2 additions & 2 deletions workflows/_detect_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ jobs:

steps:
- name: Check out PR target branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.base_ref }}

- name: Check out source branch latest commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
clean: false

Expand Down
4 changes: 2 additions & 2 deletions workflows/_node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ jobs:
language: ['javascript']
steps:
- name: Check out latest commit for current branch
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node_version }}
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion workflows/_opentofu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
permissions: write-all
steps:
- name: Check out latest commit
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: tofu fmt ${{ matrix.directory }}
uses: dflook/tofu-fmt-check@v2
Expand Down
4 changes: 2 additions & 2 deletions workflows/_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,10 @@ jobs:
env: ${{ fromJson(inputs.env) }}
steps:
- name: Check out latest commit
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python_version }}

Expand Down
12 changes: 6 additions & 6 deletions workflows/_release_and_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
outputs:
match: ${{ steps.check-tag.outputs.match }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

Expand All @@ -101,12 +101,12 @@ jobs:
append_body: true

- name: Checkout created tag
uses: actions/checkout@v4
uses: actions/checkout@v5
if: steps.check-tag.outputs.match == 'true' && ( inputs.publish_on_test_pypi || inputs.publish_on_pypi)
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
if: steps.check-tag.outputs.match == 'true' && (inputs.publish_on_pypi || inputs.publish_on_test_pypi || inputs.append_to_release)
with:
python-version: "3.x"
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
if: steps.check-tag.outputs.match == 'true' && inputs.publish_on_npm
with:
node-version: 20
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
matrix:
docker_mapping: ${{ fromJson(inputs.docker_mapping) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
matrix:
docker_mapping: ${{ fromJson(inputs.docker_mapping) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # otherwise, you do not retrieve the tags

Expand Down
2 changes: 1 addition & 1 deletion workflows/create_apt_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out latest commit on current branch
uses: actions/checkout@v4
uses: actions/checkout@v5

# Remember to set the same APT requirements file path set before!
- name: Install APT dependencies
Expand Down
4 changes: 2 additions & 2 deletions workflows/create_python_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out latest commit
uses: actions/checkout@v4
uses: actions/checkout@v5

# Uncomment only if necessary
#- name: Install system dependencies required by Python packages
# run: |
# sudo apt-get update && sudo apt install <package1> <package2>...

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.12"

Expand Down
Loading