Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get version number
shell: bash
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Create tag
if: env.CREATE_TAG == 'true' # run only in case CREATE_TAG is true
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
github.rest.git.createRef({
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/releases-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
version: ${{ steps.get-version.outputs.version }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get version number
id: get-version
Expand All @@ -54,11 +54,11 @@ jobs:
steps:
# See https://docs.aws.amazon.com/lambda/latest/dg/python-package.html#python-package-create-dependencies

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: 'lambda-v${{ needs.get-esf-version.outputs.version }}'

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
BUCKET_NAME: "elastic-serverless-forwarder"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: 'lambda-v${{ needs.get-esf-version.outputs.version }}'

Expand All @@ -107,7 +107,7 @@ jobs:
aws-account-id: "${{ env.AWS_ACCOUNT_ID }}"
aws-region: "${{ env.AWS_REGION }}"

- uses: aws-actions/setup-sam@819220f63fb333a9a394dd0a5cab2d8303fd17e2 # v2
- uses: aws-actions/setup-sam@f664fad9e12492edfc187a31f575537dfbb0ff63 # v2
with:
use-installer: true
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: ${{ github.event.workflow_run.event == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
pattern: test-results*
merge-multiple: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: make license

lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: make docker-lint

coverage:
Expand All @@ -34,9 +34,9 @@ jobs:

steps:

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12' # As defined in tests/scripts/docker/run_tests.sh
cache: 'pip' # caching pip dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Compare versions in share/version.py and CHANGELOG last entry
shell: bash
Expand Down