Skip to content

chore(deps): update dependency slackware_15_0/mozilla-thunderbird to v115.4.2 #70

chore(deps): update dependency slackware_15_0/mozilla-thunderbird to v115.4.2

chore(deps): update dependency slackware_15_0/mozilla-thunderbird to v115.4.2 #70

Workflow file for this run

---
name: Pull request checks
on: [pull_request]
concurrency:
group: pr-check-${{ github.event.number }}
cancel-in-progress: true
jobs:
update-dep:
permissions:
contents: write
runs-on: ubuntu-22.04
steps:
- name: Check out Git repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: ${{ github.head_ref }}
show-progress: false
- name: Update the md5sum of aws/aws-sdk-cpp.
run: |
CWD="$(pwd)"
(
cd development/ddbsh/
. ddbsh.info
wget $DOWNLOAD
MD5SUM="$(md5sum aws-sdk-cpp*tar* | cut -f1 -d' ')"
rm -- *tar*
sed -i "/MD5SUM/,/DOWNLOAD_x86_64/s/[[:space:]][a-z0-9][a-z0-9]*\"/ $MD5SUM\"/" ddbsh.info
)
if [[ $(git status --porcelain) ]]; then
BUILD="$(grep ^BUILD= development/ddbsh/ddbsh.SlackBuild | cut -d= -f2 | cut -d- -f2 | sed 's/}$//')"
BUILD=$((BUILD + 1))
sed -i "s/^BUILD.*/BUILD=\${BUILD:-$BUILD}/" development/ddbsh/ddbsh.SlackBuild
fi
- name: Push back updated md5sum.
uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5.0.0
with:
commit_message: Update aws-sdk-cpp MD5SUM.