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
2 changes: 1 addition & 1 deletion .github/workflows/aws-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ jobs:
if: always() && !failure() && !cancelled()
needs: push
steps:
- uses: geekyeggo/delete-artifact@v5
- uses: geekyeggo/delete-artifact@v6
with:
# delete the docker images shared within the jobs (storage on GitHub is expensive)
name: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/aws-tests-s3-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
fetch-depth: 0

- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
# If this is triggered by a pull_request, make sure the PR head repo name is the same as the target repo name
# (i.e. do not execute job for workflows coming from forks)
if: >-
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
DEFAULT_TAG: "s3-latest"
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
if: success()
needs: push-s3-image
steps:
- uses: geekyeggo/delete-artifact@v5
- uses: geekyeggo/delete-artifact@v6
with:
name: localstack-s3-image-*
failOnError: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/aws-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
# The test-selection file specifies which tests to run for each service,
# while this step allows skipping entire jobs when no relevant services have changed
- name: Determine services affected by change
uses: dorny/paths-filter@v3.0.2
uses: dorny/paths-filter@v4.0.1
id: changes
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
- name: Login to Docker Hub
# login to DockerHub to avoid rate limiting issues on custom runners
if: github.repository_owner == 'localstack' && env.DOCKER_PULL_SECRET_AVAILABLE == 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_PULL_USERNAME }}
password: ${{ secrets.DOCKERHUB_PULL_TOKEN }}
Expand Down Expand Up @@ -571,7 +571,7 @@ jobs:
- name: Login to Docker Hub
# login to DockerHub to avoid rate limiting issues on custom runners
if: github.repository_owner == 'localstack' && env.DOCKER_PULL_SECRET_AVAILABLE == 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_PULL_USERNAME }}
password: ${{ secrets.DOCKERHUB_PULL_TOKEN }}
Expand Down Expand Up @@ -922,7 +922,7 @@ jobs:
- name: Login to Docker Hub
# login to DockerHub to avoid rate limiting issues on custom runners
if: github.repository_owner == 'localstack' && env.DOCKER_PULL_SECRET_AVAILABLE == 'true'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_PULL_USERNAME }}
password: ${{ secrets.DOCKERHUB_PULL_TOKEN }}
Expand Down
Loading