Skip to content

Commit

Permalink
[CI][CD] Update GitHub Actions dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Dec 27, 2023
1 parent c866c32 commit e291aa0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release.yml
#
# Copyright (C) 2022 ViliusSutkus89.com
# Copyright (C) 2022, 2023 ViliusSutkus89.com
#
# Documenter is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3,
Expand Down Expand Up @@ -32,10 +32,10 @@ permissions:
jobs:
release:
environment: Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# test.yml
#
# Copyright (C) 2022 ViliusSutkus89.com
# Copyright (C) 2022, 2023 ViliusSutkus89.com
#
# Documenter is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3,
Expand Down Expand Up @@ -40,10 +40,10 @@ env:

jobs:
releaseBuild:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
Expand Down Expand Up @@ -75,10 +75,10 @@ jobs:
run: diff <(git status app/schemas --short) <(echo -n "")

debugBuild:
runs-on: macos-11
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
Expand All @@ -99,7 +99,7 @@ jobs:
test:
needs: debugBuild
# Only macos VMs are available with exposed CPU extensions to run hardware accelerated emulator
runs-on: macos-11
runs-on: macos-13
strategy:
fail-fast: false
matrix:
Expand All @@ -117,8 +117,8 @@ jobs:
# api-level: 33
# api-type-target: google_apis
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
Expand Down

0 comments on commit e291aa0

Please sign in to comment.