Skip to content

Commit

Permalink
Update to checkout v3
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Aug 18, 2023
1 parent 039c9db commit 087f150
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/announce-a-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/breakage-against-ponyc-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.2:latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=0.9.0
- name: Send alert on failure
Expand All @@ -32,7 +32,7 @@ jobs:
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1t:latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=1.1.x
- name: Send alert on failure
Expand All @@ -53,7 +53,7 @@ jobs:
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.1.0:latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=3.0.x
- name: Send alert on failure
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Lint bash, docker, markdown, and yaml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Lint codebase
uses: docker://github/super-linter:v3.8.3
env:
Expand All @@ -28,7 +28,7 @@ jobs:
container:
image: ponylang/changelog-tool:release
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Verify CHANGELOG
run: changelog-tool verify

Expand All @@ -38,7 +38,7 @@ jobs:
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.2:release
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=0.9.0

Expand All @@ -48,7 +48,7 @@ jobs:
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1t:release
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=1.1.x

Expand All @@ -58,15 +58,15 @@ jobs:
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.1.0:release
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test
run: make test config=debug ssl=3.0.x

test-windows-vs-ponyc-release:
name: Windows (LibreSSL) with most recent ponyc release
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test with most recent ponyc release
run: |
Invoke-WebRequest https://dl.cloudsmith.io/public/ponylang/releases/raw/versions/latest/ponyc-x86-64-pc-windows-msvc.zip -OutFile C:\ponyc.zip;
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prepare-for-a-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
Expand All @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
needs:
- generate-documentation
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down

0 comments on commit 087f150

Please sign in to comment.