Skip to content

Commit 1593fb4

Browse files
SamVanheerzpostfacto
authored andcommitted
Update checkout action to use main branch instead of master
1 parent 83bf588 commit 1593fb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
IMAGE: ubuntu
1313
IMAGE_TAG: latest
1414
steps:
15-
- uses: actions/checkout@master
15+
- uses: actions/checkout@main
1616
# Note only alpine needs "preinstall" step
1717
- name: Update packages
1818
run: sudo -E bash .github/update-packages.sh
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
VCPKG_ROOT: ${{ github.workspace }}/vcpkg
3232
steps:
33-
- uses: actions/checkout@master
33+
- uses: actions/checkout@main
3434

3535
- uses: lukka/get-cmake@latest
3636

@@ -107,7 +107,7 @@ jobs:
107107
docker_image: alpine
108108
docker_tag: latest
109109
steps:
110-
- uses: actions/checkout@master
110+
- uses: actions/checkout@main
111111
- name: Launch container
112112
run: |
113113
docker run -d --rm --name github-docker-builder -e LC_ALL="C" -e LANG="C" -v ${{ github.workspace }}:/build -w /build ${{ matrix.docker_image }}:${{ matrix.docker_tag }} tail -f /dev/null

0 commit comments

Comments
 (0)