Skip to content

Commit

Permalink
CI: update actions (#231)
Browse files Browse the repository at this point in the history
Fixes Github Action deprecation warnings
  • Loading branch information
deathaxe authored Mar 17, 2024
1 parent c6beb37 commit 5924ce1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
cancel-previous-runs:
runs-on: ubuntu-latest
steps:
- uses: styfle/cancel-workflow-action@0.9.1
- uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}

Expand All @@ -27,15 +27,15 @@ jobs:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: "./actions/setup"
with:
sublime-text-version: ${{ matrix.st-version }}
install-unittesting: false
- uses: "./actions/run-tests"
with:
coverage: true
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{secrets.CODECOV_TOKEN}}

Expand All @@ -46,7 +46,7 @@ jobs:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: "./actions/setup"
with:
install-package: false
Expand All @@ -59,7 +59,7 @@ jobs:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: SublimeText/UnitTesting/actions/setup@v1
with:
install-unittesting: false
Expand All @@ -72,11 +72,11 @@ jobs:
os: ["ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: randy3k/UnitTesting-example
path: UnitTesting-example
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: UnitTesting
- uses: "./UnitTesting/actions/setup"
Expand Down

0 comments on commit 5924ce1

Please sign in to comment.