Skip to content

Commit

Permalink
Merge pull request dogecoin#3467 from patricklodder/1.15.0-update-ci-…
Browse files Browse the repository at this point in the history
…internals

ci: update actions to v4
  • Loading branch information
chromatic authored Mar 5, 2024
2 parents bab1bfc + 6c1ef79 commit 36b8b7a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,11 @@ jobs:
run: ${{ matrix.postinstall }}

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: SDK cache
if: ${{ matrix.sdk }}
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: sdk
with:
Expand All @@ -256,7 +256,7 @@ jobs:
tar -C depends/SDKs -xf depends/sdk-sources/${{ env.sdk-filename }}
- name: Dependency cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: depends
with:
Expand All @@ -268,7 +268,7 @@ jobs:
make $MAKEJOBS -C depends HOST=${{ matrix.host }} ${{ matrix.dep-opts }}
- name: CCache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: ccache
with:
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
run: make -C src check-symbols

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dogecoin-${{ github.sha }}-${{ matrix.name }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Update system
run: |
sudo apt-get update --yes
sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils --yes
- name: Dependency cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: depends
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
name: Check Translations
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Lint translation files
run: python3 contrib/devtools/check-translations.py

0 comments on commit 36b8b7a

Please sign in to comment.