Skip to content

Commit

Permalink
Merge pull request #20 from capralifecycle/renovate/ubuntu-24.x
Browse files Browse the repository at this point in the history
chore(deps): update dependency ubuntu to v24
  • Loading branch information
joakimen authored Oct 17, 2024
2 parents 860dfcb + 2996693 commit 7887a32
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
contents: read
deployments: write
verify:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: install shellcheck
Expand Down Expand Up @@ -52,6 +52,10 @@ jobs:
if [ "$has_failed" != "false" ]; then
exit 1
fi
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: verify docs are up-to-date
run: |
python -m pip install "pyyaml==6.0.1"
Expand All @@ -65,7 +69,7 @@ jobs:
needs:
- verify
- test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
permissions:
contents: write
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
test-actions:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
actions: read
id-token: write
Expand Down Expand Up @@ -83,6 +83,11 @@ jobs:
# configure localstack
#
######################################################

- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: install-localstack
env:
AWS_ACCOUNT_ID: ${{ steps.act-parse-config.outputs.accountId }}
Expand Down Expand Up @@ -201,7 +206,7 @@ jobs:
- name: assert-slack-notify
id: assert-slack-notify
env:
ASSSERT_GOT: "${{ steps.act-slack-notify.outputs.payload }}"
ASSERT_GOT: "${{ steps.act-slack-notify.outputs.payload }}"
ASSERT_EXPECTED_PAYLOAD_KEY: "channel"
run: |
echo "$ASSERT_GOT" | jq --exit-status --arg key "$ASSERT_EXPECTED_PAYLOAD_KEY" 'has($key)'
Expand Down

0 comments on commit 7887a32

Please sign in to comment.