Skip to content

Commit

Permalink
Change to actions/checkout@v4 to avoid a nodejs warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed Apr 3, 2024
1 parent 0586717 commit 5811e72
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autoconf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
sudo apt-get -y update
sudo apt-get -y install autoconf
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: run autoconf
run: autoconf && autoheader
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
sudo apt-get -y update
sudo apt-get -y install zlib1g-dev libtomcrypt-dev libtommath-dev mercurial python3-venv libpam0g-dev $CC
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: configure
run: ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/outoftree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: 'ubuntu-22.04'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: 'ubuntu-22.04'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: release.sh
run: ./release.sh --testrel | tee log1.txt
Expand Down

0 comments on commit 5811e72

Please sign in to comment.