Skip to content

Commit

Permalink
Merge pull request #539 from Tradeshift/POPS-3158_2
Browse files Browse the repository at this point in the history
fix(deps): bump actions/checkout to v4
  • Loading branch information
arminioa authored Jan 17, 2024
2 parents 01f2fcb + 599ee07 commit 2cdfdf4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
outputs:
needs-update: ${{ steps.diff.outcome != 'success' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/.npm
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
needs: [build]
if: ${{ needs.build.outputs.needs-update != 'true' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: tradeshift/actions-semantic-release@v1
id: semantic-release
with:
Expand Down
23 changes: 20 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/cache@v3
Expand All @@ -30,7 +30,7 @@ jobs:
self-check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand All @@ -49,7 +49,7 @@ jobs:
self-check-custom-tag:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand All @@ -75,3 +75,20 @@ jobs:
exit 1;
fi;
echo "Confirmed: Default tag not found"
semantic-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Dry-run release
uses: tradeshift/actions-semantic-release@v1
id: semantic-release
with:
dry_run: true
check_name: Semantic release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Lint commit messages
uses: tradeshift/commitlint-github-action@v5
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
docker:
runs-on: [self-hosted,ts-large-x64-docker-large]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: tradeshift/actions-docker@v1
with:
password: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY_NOBASE64 }}
Expand All @@ -44,7 +44,7 @@ jobs:
docker:
runs-on: [self-hosted,ts-large-x64-docker-large]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: tradeshift/actions-docker@v1
with:
password: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY_NOBASE64 }}
Expand All @@ -66,7 +66,7 @@ jobs:
docker:
runs-on: [self-hosted,ts-large-x64-docker-large]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: tradeshift/actions-docker@v1
with:
password: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY_NOBASE64 }}
Expand All @@ -90,7 +90,7 @@ jobs:
docker:
runs-on: [self-hosted,ts-large-x64-docker-large]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: tradeshift/actions-docker@v1
with:
password: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY_NOBASE64 }}
Expand All @@ -109,7 +109,7 @@ jobs:
docker:
runs-on: [self-hosted,ts-large-x64-docker-large]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: tradeshift/actions-docker@v1
with:
password: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY_NOBASE64 }}
Expand All @@ -127,7 +127,7 @@ jobs:
docker:
runs-on: [self-hosted,ts-large-x64-docker-large]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: tradeshift/actions-docker@v1
with:
password: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY_NOBASE64 }}
Expand All @@ -146,7 +146,7 @@ jobs:
docker:
runs-on: [self-hosted,ts-large-x64-docker-large]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: tradeshift/actions-docker@v1
with:
password: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY_NOBASE64 }}
Expand Down

0 comments on commit 2cdfdf4

Please sign in to comment.