Skip to content

Commit

Permalink
fix @main to @master
Browse files Browse the repository at this point in the history
  • Loading branch information
luclaurent committed Dec 13, 2024
1 parent 503f492 commit 76bbb43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
uses: actions/checkout@main
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@main
uses: docker/setup-buildx-action@master
- name: Login to Github Packages
uses: docker/login-action@main
uses: docker/login-action@master
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.PAT }}
- name: 'Build:dockerimage'
id: docker_build
uses: docker/build-push-action@main
uses: docker/build-push-action@master
with:
# relative path to the place where source code with Dockerfile is located
context: ./docker
Expand Down
2 changes: 1 addition & 1 deletion amc2moodle/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.11.0'
__version__ = '2.12.0'

0 comments on commit 76bbb43

Please sign in to comment.