Skip to content

Commit

Permalink
Deal with upcoming GHA deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson committed Mar 21, 2023
1 parent 0f0ed53 commit 47d239e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.19

Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
SYNCV3_SECRET: itsasecret

- name: Upload test log
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: always()
with:
name: Integration test logs
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: "Set Go Version"
run: |
echo "$GOROOT_1_19_X64/bin" >> $GITHUB_PATH
Expand Down Expand Up @@ -151,12 +151,12 @@ jobs:
element_web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: "Build docker image"
env:
DOCKER_BUILDKIT: 1
run: docker build -f Dockerfile -t ghcr.io/matrix-org/sliding-sync:ci .
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: matrix-org/matrix-react-sdk
- uses: actions/setup-node@v3
Expand All @@ -173,7 +173,7 @@ jobs:
run: yarn build
working-directory: ./element-web
- name: "Run cypress tests"
uses: cypress-io/github-action@v4.1.1
uses: cypress-io/github-action@v5.5.1
with:
browser: chrome
start: npx serve -p 8080 ./element-web/webapp
Expand Down

0 comments on commit 47d239e

Please sign in to comment.