Skip to content

Commit

Permalink
Merge pull request #1561 from Framstag/update-github-action-plugins
Browse files Browse the repository at this point in the history
Update github actions plugins
  • Loading branch information
Framstag authored Feb 5, 2024
2 parents 6395853 + ec2a92e commit 7bd7ded
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and test_on_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install build tool
run: brew install cmake ninja
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_and test_on_msys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
shell: msys2 {0}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
# mingw-w64-x86_64-cairo mingw-w64-x86_64-pango
- name: Setup MSYS/MINGW64
uses: msys2/setup-msys2@v2
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
shell: msys2 {0}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup MSYS/MINGW64
uses: msys2/setup-msys2@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_and test_on_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install build tool
run: brew install meson ninja
- name: Install dependencies
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install build tool
run: brew install cmake ninja
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_and test_on_ubuntu_20_04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install software-properties-common
run: sudo apt-get install software-properties-common
- name: Install gcc compiler and Co
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install software-properties-common
run: sudo apt-get install software-properties-common
- name: Install gcc compiler, cmake and ninja
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_and test_on_ubuntu_22_04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update package list
run: sudo apt-get update
- name: Install software-properties-common
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install software-properties-common
run: sudo apt-get install software-properties-common
- name: Install gcc compiler and Co
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install software-properties-common
run: sudo apt-get install software-properties-common
- name: Install gcc compiler, cmake and ninja
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install software-properties-common
run: sudo apt-get install software-properties-common
- name: Install gcc compiler and Co
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install software-properties-common
run: sudo apt-get install software-properties-common
- name: Install gcc compiler, cmake and ninja
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build_and test_on_vs2019.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Copy vcpkg.json
run: copy vcpkg_medium.json vcpkg.json
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.3.1
uses: microsoft/setup-msbuild@v2
# Restore from cache the previously built ports. If cache-miss, download and build vcpkg (aka "bootstrap vcpkg").
- name: Restore from cache and install vcpkg
# Download and build vcpkg, without installing any port. If content is cached already, it is a no-op.
uses: lukka/run-vcpkg@v11.1
uses: lukka/run-vcpkg@v11.4
with:
runVcpkgInstall: false
vcpkgJsonGlob: '**/vcpkg.json'
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
run: copy /Y build\Demos\Debug\*.exe dist
shell: cmd
- name: Upload distribution archive
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Libosmscout_Windows.zip
path: dist
Expand All @@ -79,9 +79,9 @@ jobs:
shell: cmd
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python 3.x for meson
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install meson and ninja
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_on_ubuntu_22_04_qt_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sanitize_on_ubuntu_22_04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update package list
run: sudo apt-get update
- name: Install software-properties-common
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install software-properties-common
run: sudo apt-get install software-properties-common
- name: Install gcc compiler, cmake and ninja
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
environment: SOURCEFORGE
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update package list
run: sudo apt-get update
- name: Install additional tools
Expand Down

0 comments on commit 7bd7ded

Please sign in to comment.