From 11411d7c964cc7f410d4115cb04114a68352beb1 Mon Sep 17 00:00:00 2001 From: Klaus Rettinghaus Date: Tue, 3 Oct 2023 12:37:51 +0200 Subject: [PATCH 1/3] update checkout action to version 4 --- .github/workflows/macosx-ci.yml | 2 +- .github/workflows/ubuntu-22.04.yml | 4 ++-- .github/workflows/windows-server-2019.yml | 2 +- .github/workflows/windows-server-2022.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/macosx-ci.yml b/.github/workflows/macosx-ci.yml index 774048cd66..c60d76a4da 100644 --- a/.github/workflows/macosx-ci.yml +++ b/.github/workflows/macosx-ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: macOS-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 # caching dependencies and ccache # https://docs.github.com/en/actions/configuring-and-managing-workflows/caching-dependencies-to-speed-up-workflows diff --git a/.github/workflows/ubuntu-22.04.yml b/.github/workflows/ubuntu-22.04.yml index 3a41de1f44..8f34c98b87 100644 --- a/.github/workflows/ubuntu-22.04.yml +++ b/.github/workflows/ubuntu-22.04.yml @@ -6,7 +6,7 @@ jobs: build-devenv: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build the Docker image run: sudo DOCKER_BUILDKIT=1 docker build ./packaging/docker/devenv --file ./packaging/docker/devenv/Dockerfile.ubuntu.2204 --tag openage-devenv:latest shell: bash @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-22.04 needs: build-devenv steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Create tmp path run: mkdir -p /tmp/image shell: bash diff --git a/.github/workflows/windows-server-2019.yml b/.github/workflows/windows-server-2019.yml index 2d61c7e38f..93543f7c84 100644 --- a/.github/workflows/windows-server-2019.yml +++ b/.github/workflows/windows-server-2019.yml @@ -6,7 +6,7 @@ jobs: build-x64: runs-on: windows-2019 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive path: source diff --git a/.github/workflows/windows-server-2022.yml b/.github/workflows/windows-server-2022.yml index 84fa767cfe..eb1b778e66 100644 --- a/.github/workflows/windows-server-2022.yml +++ b/.github/workflows/windows-server-2022.yml @@ -6,7 +6,7 @@ jobs: build-x64: runs-on: windows-2022 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive path: source From f55bdd1265f7b720406a9411c07e299b1cfec191 Mon Sep 17 00:00:00 2001 From: Klaus Rettinghaus Date: Tue, 3 Oct 2023 12:39:17 +0200 Subject: [PATCH 2/3] update artifact upload action to version 3 --- .github/workflows/ubuntu-22.04.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu-22.04.yml b/.github/workflows/ubuntu-22.04.yml index 8f34c98b87..3343df5506 100644 --- a/.github/workflows/ubuntu-22.04.yml +++ b/.github/workflows/ubuntu-22.04.yml @@ -16,7 +16,7 @@ jobs: sudo docker save openage-devenv:latest | gzip > /tmp/staging/devenv.tar.gz shell: bash - name: Publish the Docker image - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v3 with: name: devenv-image-compressed.tar.gz path: '/tmp/staging/devenv.tar.gz' @@ -47,7 +47,7 @@ jobs: mkdir -p /tmp/openage tar -czvf /tmp/openage/openage-build.tar.gz ./build - name: Publish build artifacts - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v3 with: name: openage-build.tar.gz path: '/tmp/openage/openage-build.tar.gz' From 2e5f4b8eae6a5758e4e4a7fe0217569d9550c3f9 Mon Sep 17 00:00:00 2001 From: Klaus Rettinghaus Date: Tue, 3 Oct 2023 12:40:25 +0200 Subject: [PATCH 3/3] update python setup action to version 4 --- .github/workflows/windows-server-2019.yml | 2 +- .github/workflows/windows-server-2022.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-server-2019.yml b/.github/workflows/windows-server-2019.yml index 93543f7c84..93a9ecf867 100644 --- a/.github/workflows/windows-server-2019.yml +++ b/.github/workflows/windows-server-2019.yml @@ -15,7 +15,7 @@ jobs: vswhere -latest shell: pwsh - name: Setup Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: '3.9' architecture: 'x64' diff --git a/.github/workflows/windows-server-2022.yml b/.github/workflows/windows-server-2022.yml index eb1b778e66..c4deba0d46 100644 --- a/.github/workflows/windows-server-2022.yml +++ b/.github/workflows/windows-server-2022.yml @@ -15,7 +15,7 @@ jobs: vswhere -latest shell: pwsh - name: Setup Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: '3.9' architecture: 'x64'