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..3343df5506 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 @@ -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' @@ -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 @@ -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' diff --git a/.github/workflows/windows-server-2019.yml b/.github/workflows/windows-server-2019.yml index 2d61c7e38f..93a9ecf867 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 @@ -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 84fa767cfe..c4deba0d46 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 @@ -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'