Skip to content

Commit

Permalink
Merge pull request #1554 from rettinghaus/update-actions
Browse files Browse the repository at this point in the history
Update actions
  • Loading branch information
TheJJ committed Oct 6, 2023
2 parents 7fe57bd + 2e5f4b8 commit fb006ad
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macosx-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ubuntu-22.04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand All @@ -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
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-server-2019.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-server-2022.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand Down

0 comments on commit fb006ad

Please sign in to comment.